Skip to content

Commit

Permalink
update build plugins, remove timestamps
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Dec 9, 2019
1 parent 371a4d1 commit 0d789fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@

<non.final>false</non.final>

<maven.build.timestamp.format>yyMMdd.HHmm</maven.build.timestamp.format>
<legal.doc.source>${project.basedir}/..</legal.doc.source>

<jaxb-api.version>2.3.3</jaxb-api.version>
Expand All @@ -136,7 +135,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
Expand All @@ -151,7 +150,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -166,12 +165,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<version>3.0.0-M3</version>
</plugin>
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>2.2</version>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.glassfish.build</groupId>
Expand Down Expand Up @@ -256,7 +255,6 @@
</goals>
<configuration>
<getRevisionOnlyOnce>true</getRevisionOnlyOnce>
<timestampFormat>{0,date,yyyy-MM-dd'T'HH:mm:ssZ}</timestampFormat>
<shortRevisionLength>7</shortRevisionLength>
<revisionOnScmFailure>false</revisionOnScmFailure>
</configuration>
Expand Down Expand Up @@ -344,6 +342,7 @@
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<_removeheaders>Bnd-LastModified,Include-Resource,Build-Jdk,Built-By</_removeheaders>
<Bundle-Description>Jakarta XML Web Services API ${spec.version} Specification</Bundle-Description>
<Bundle-Version>${spec.bundle.version}</Bundle-Version>
<Bundle-SymbolicName>${spec.bundle.symbolic-name}</Bundle-SymbolicName>
Expand All @@ -353,7 +352,7 @@
<DynamicImport-Package>org.glassfish.hk2.osgiresourcelocator</DynamicImport-Package>
<Specification-Vendor>Eclipse Foundation</Specification-Vendor>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Build-Id>${scmBranch}-${buildNumber}, ${timestamp}</Implementation-Build-Id>
<Implementation-Build-Id>${scmBranch}-${buildNumber}</Implementation-Build-Id>
<Import-Package>!org.glassfish.hk2.osgiresourcelocator,*</Import-Package>
</instructions>
</configuration>
Expand Down Expand Up @@ -385,7 +384,7 @@
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Implementation-Build-Id>${scmBranch}-${buildNumber}, ${timestamp}</Implementation-Build-Id>
<Implementation-Build-Id>${scmBranch}-${buildNumber}</Implementation-Build-Id>
</manifestEntries>
</archive>
</configuration>
Expand All @@ -395,6 +394,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<release>11</release>
<notimestamp>true</notimestamp>
<docfilessubdirs>true</docfilessubdirs>
<groups>
<group>
Expand Down

0 comments on commit 0d789fe

Please sign in to comment.