Skip to content
This repository was archived by the owner on Jun 6, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

<groupId>javax.resource</groupId>
<artifactId>javax.resource-api</artifactId>
<version>1.7.1-SNAPSHOT</version>
<version>1.7.1.RC1</version>

<properties>
<extension.name>javax.resource</extension.name>
Expand Down Expand Up @@ -94,8 +94,8 @@
<url>https://github.com/javaee/javax.resource/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/javaee/javax.resource.git</connection>
<developerConnection>scm:git:git://github.com/javaee/javax.resource.git</developerConnection>
<connection>scm:git:https://github.com/javaee/javax.resource.git</connection>
<developerConnection>scm:git:git@github.com:javaee/javax.resource.git</developerConnection>
<url>https://github.com/javaee/javax.resource</url>
</scm>

Expand Down Expand Up @@ -167,8 +167,8 @@
<Specification-Vendor>Oracle Corporation</Specification-Vendor>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Vendor-Id>org.glassfish</Implementation-Vendor-Id>
<Import-Package>javax.transaction.*;version="[1.2,1.3)",*</Import-Package>
<_include>-${basedir}/osgi.bundle</_include>
<Import-Package>javax.transaction;version="[1.3,2.0)",*</Import-Package>
<_include>-${basedir}/osgi.bundle</_include>
</instructions>
</configuration>
<executions>
Expand Down Expand Up @@ -232,8 +232,9 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<bottom>
<![CDATA[Copyright &#169; 1999-2013,
<![CDATA[Copyright &#169; 1999-2018,
<a href="http://www.oracle.com">Oracle</a>
and/or its affiliates. All Rights Reserved.
Use is subject to
Expand All @@ -257,6 +258,12 @@
</groups>
</configuration>
</execution>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
Expand Down Expand Up @@ -299,13 +306,26 @@
</reporting>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
<version>1.2</version>
<version>1.3</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@
# https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-8.ReleaseIt
# http://aseng-wiki.us.oracle.com/asengwiki/display/GlassFish/Migrating+Maven+deployment+to+maven.java.net

mvn -B release:prepare -Prelease
mvn -B release:perform -Prelease
mvn -B release:prepare
mvn -B release:perform