Skip to content

Commit

Permalink
ejb-api release
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
  • Loading branch information
senivam committed Nov 1, 2018
1 parent 9f26f2c commit 1ac464c
Showing 1 changed file with 36 additions and 11 deletions.
47 changes: 36 additions & 11 deletions pom.xml
Expand Up @@ -28,7 +28,7 @@
<groupId>jakarta.ejb</groupId>
<artifactId>jakarta.ejb-api</artifactId>
<version>3.2.3-SNAPSHOT</version>

<properties>
<extension.name>javax.ejb</extension.name>
<spec.version>3.2</spec.version>
Expand All @@ -37,10 +37,10 @@
<findbugs.exclude>exclude.xml</findbugs.exclude>
<findbugs.threshold>Low</findbugs.threshold>
</properties>

<name>${extension.name} API</name>
<description>Eclipse Project for EJB</description>

<url>https://github.com/eclipse-ee4j/ejb-api</url>

<developers>
Expand Down Expand Up @@ -82,6 +82,31 @@
<url>https://github.com/eclipse-ee4j/ejb-api</url>
<tag>HEAD</tag>
</scm>

<repositories>
<repository>
<id>maven-releases</id>
<url>https://oss.sonatype.org/service/local/repositories/jakartatransaction-1000/content</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>maven-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<build>

Expand All @@ -93,7 +118,7 @@
<include>**/*.html</include>
</includes>
</resource>
</resources>
</resources>

<pluginManagement>
<plugins>
Expand Down Expand Up @@ -232,7 +257,7 @@
<Bundle-SymbolicName>${spec.bundle.symbolic-name}</Bundle-SymbolicName>
<Extension-Name>${spec.extension.name}</Extension-Name>
<Implementation-Version>${spec.implementation.version}</Implementation-Version>
<Specification-Version>${spec.specification.version}</Specification-Version>
<Specification-Version>${spec.specification.version}</Specification-Version>
<Bundle-Description>
Java(TM) EJB ${spec.version} API Design Specification
</Bundle-Description>
Expand Down Expand Up @@ -290,7 +315,7 @@
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
Expand Down Expand Up @@ -331,7 +356,7 @@
</goals>
</execution>
</executions>
</plugin>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
Expand Down Expand Up @@ -369,7 +394,7 @@
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</plugins>
</reporting>
</configuration>
</plugin>
Expand All @@ -385,9 +410,9 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<version>1.3</version>
<groupId>jakarta.transaction</groupId>
<artifactId>jakarta.transaction-api</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 1ac464c

Please sign in to comment.