[cdi-api] 05/10: Update debian/pom.xml for new release.
Markus Koschany
apo-guest at moszumanska.debian.org
Tue Sep 30 16:08:33 UTC 2014
This is an automated email from the git hooks/post-receive script.
apo-guest pushed a commit to branch experimental
in repository cdi-api.
commit 0d5a1fa18999b2a5f215d95279d6fcd8faeea32e
Author: Markus Koschany <apo at gambaru.de>
Date: Tue Sep 30 12:56:09 2014 +0200
Update debian/pom.xml for new release.
---
debian/pom.xml | 294 ++++++++++++++++++++++++++++++++++++++++++++++++---------
1 file changed, 250 insertions(+), 44 deletions(-)
diff --git a/debian/pom.xml b/debian/pom.xml
index 79e317b..7c03552 100644
--- a/debian/pom.xml
+++ b/debian/pom.xml
@@ -1,47 +1,253 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.jboss.weld</groupId>
- <artifactId>weld-api-parent</artifactId>
- <version>1.0</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
- <packaging>jar</packaging>
-
- <name>CDI APIs</name>
- <description>APIs for JSR-299: Contexts and Dependency Injection for Java EE</description>
-
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <optional>true</optional>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.ejb3</groupId>
- <artifactId>jboss-ejb3-api</artifactId>
- <optional>true</optional>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.interceptor</groupId>
- <artifactId>jboss-interceptor-api</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javax.annotation</groupId>
- <artifactId>jsr250-api</artifactId>
- </dependency>
-
- <dependency>
- <groupId>javax.inject</groupId>
- <artifactId>javax.inject</artifactId>
- </dependency>
- </dependencies>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-parent</artifactId>
+ <version>26</version>
+ <relativePath />
+ </parent>
+
+ <groupId>javax.enterprise</groupId>
+ <artifactId>cdi-api</artifactId>
+ <packaging>jar</packaging>
+ <version>1.2</version>
+
+ <name>CDI APIs</name>
+ <description>APIs for CDI (Contexts and Dependency Injection for Java EE)</description>
+
+ <url>http://cdi-spec.org</url>
+ <licenses>
+ <license>
+ <name>Apache License, Version 2.0</name>
+ <distribution>repo</distribution>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
+ </license>
+ </licenses>
+
+ <ciManagement>
+ <system>Hudson</system>
+ <url>http://hudson.jboss.org</url>
+ </ciManagement>
+
+ <issueManagement>
+ <system>JIRA</system>
+ <url>http://jira.jboss.org/browse/CDI</url>
+ </issueManagement>
+
+ <organization>
+ <name>JBoss by Red Hat, Inc.</name>
+ <url>http://jboss.org</url>
+ </organization>
+
+ <inceptionYear>2008</inceptionYear>
+
+ <developers>
+ <developer>
+ <name>Pete Muir</name>
+ <id>pmuir</id>
+ <timezone>GMT</timezone>
+ <organization>Red Hat Inc.</organization>
+ <roles>
+ <role>Specfication Lead</role>
+ </roles>
+ <email>pmuir[at]redhat[dot]com</email>
+ </developer>
+
+ <developer>
+ <name>Antoine Sabot-Durand</name>
+ <id>asabotdu</id>
+ <timezone>CET</timezone>
+ <organization>Red Hat Inc.</organization>
+ <roles>
+ <role>Specfication co-lead</role>
+ </roles>
+ <email>asd[at]redhat[dot]com</email>
+ </developer>
+
+ <developer>
+ <name>Mark Struberg</name>
+ <id>mstruberg</id>
+ <timezone>CET</timezone>
+ <roles>
+ <role>Implementation developer</role>
+ </roles>
+ <email>struberg[at]yahoo[dot]de</email>
+ </developer>
+
+ <developer>
+ <name>Jozef Hartinger</name>
+ <id>jhartinger</id>
+ <timezone>CET</timezone>
+ <organization>Red Hat Inc.</organization>
+ <roles>
+ <role>RI tech lead</role>
+ </roles>
+ <email>jhartinger[at]redhat[dot]com</email>
+ </developer>
+
+ <developer>
+ <name>Martin Kouba</name>
+ <id>mkouba</id>
+ <organization>Red Hat Inc.</organization>
+ <roles>
+ <role>TCK tech lead</role>
+ </roles>
+ <email>mkouba[at]redhat[dot]com</email>
+ </developer>
+ </developers>
+
+
+ <properties>
+ <atinject.api.version>1</atinject.api.version>
+ <uel.api.version>3.0.0</uel.api.version>
+ <interceptor.api.version>1.2</interceptor.api.version>
+ </properties>
+
+ <!-- Configure all dependencies (e.g. testing) -->
+ <dependencyManagement>
+ <dependencies>
+
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <version>5.10</version>
+ <classifier>jdk15</classifier>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.inject</groupId>
+ <artifactId>javax.inject</artifactId>
+ <version>${atinject.api.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>javax.el-api</artifactId>
+ <version>${uel.api.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.interceptor</groupId>
+ <artifactId>javax.interceptor-api</artifactId>
+ <version>${interceptor.api.version}</version>
+ </dependency>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>javax.el-api</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.interceptor</groupId>
+ <artifactId>javax.interceptor-api</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.inject</groupId>
+ <artifactId>javax.inject</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.testng</groupId>
+ <artifactId>testng</artifactId>
+ <classifier>jdk15</classifier>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <scm>
+ <connection>scm:git:git at github.com:cdi-spec/cdi.git</connection>
+ <url>scm:git:git at github.com:cdi-spec/cdi.git</url>
+ <developerConnection>scm:git:git at github.com:cdi-spec/cdi.git</developerConnection>
+ </scm>
+
+ <profiles>
+ <profile>
+ <id>jboss-public-repository</id>
+ <activation>
+ <property>
+ <name>jboss-public-repository</name>
+ <value>!false</value>
+ </property>
+ </activation>
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>http://repository.jboss.org/nexus/content/groups/public</url>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>http://repository.jboss.org/nexus/content/groups/public</url>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+ </profile>
+ </profiles>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>bundle-manifest</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <instructions>
+ <Export-Package>
+ javax.decorator;version=1.1,
+ javax.enterprise.*;version=1.1,
+ </Export-Package>
+ <Import-Package>
+ javax.el; version=2.2,
+ *
+ </Import-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ <!-- Add the OSGi Manifest to the main jar -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/cdi-api.git
More information about the pkg-java-commits
mailing list