Skip to content

Commit

Permalink
copyright check exclusion, final cleanup (#111)
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <[email protected]>
  • Loading branch information
lukasj authored and Tomas-Kraus committed Nov 27, 2018
1 parent bc5e169 commit aa44f72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 25 deletions.
1 change: 0 additions & 1 deletion etc/config/copyright-exclude
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
.zip
/CONTRIBUTING.md
/LICENSE.md
/META-INF/services/
/NOTICE.md
/README
/README.md
Expand Down
23 changes: 1 addition & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
<findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude>
<findbugs.threshold>Low</findbugs.threshold>
<upgrade.mods>${project.build.directory}/upgrade-mods</upgrade.mods>
<mods>${project.build.directory}/mods</mods>
<proxyOpts/>
<config.dir>${project.basedir}/etc/config</config.dir>
<legal.doc.source>${project.basedir}</legal.doc.source>
Expand Down Expand Up @@ -152,11 +151,6 @@
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
</plugins>
</pluginManagement>

Expand Down Expand Up @@ -202,18 +196,6 @@
<includeArtifactIds>jakarta.xml.soap-api,jakarta.activation</includeArtifactIds>
</configuration>
</execution>
<execution>
<id>copy-module-path</id>
<phase>generate-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${mods}</outputDirectory>
<silent>false</silent>
<includeArtifactIds>stax-ex,mimepull</includeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down Expand Up @@ -291,6 +273,7 @@
</goals>
<configuration>
<instructions>
<Import-Package>javax.activation;version=!,javax.xml.bind.attachment;version=!,*</Import-Package>
<Implementation-Build-Id>${project.version} - ${scmBranch}-${buildNumber}, ${timestamp}</Implementation-Build-Id>
<_noee>true</_noee>
</instructions>
Expand Down Expand Up @@ -370,10 +353,6 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
*/
module com.sun.xml.messaging.saaj {
requires org.jvnet.mimepull;
requires transitive java.xml.bind;
requires java.xml.bind;
requires org.jvnet.staxex;
requires transitive java.xml.soap;
requires java.xml.soap;
requires java.logging;
requires java.desktop;
requires java.xml;
Expand Down

0 comments on commit aa44f72

Please sign in to comment.