Skip to content

Commit

Permalink
make most build work on JDK9
Browse files Browse the repository at this point in the history
  • Loading branch information
ctomc committed Oct 24, 2017
1 parent 0344a01 commit d700ae0
Show file tree
Hide file tree
Showing 12 changed files with 52 additions and 11 deletions.
6 changes: 6 additions & 0 deletions batch-processing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,11 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>
</project>
7 changes: 7 additions & 0 deletions contacts-jquerymobile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,13 @@
<artifactId>jboss-servlet-api_3.1_spec</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down
2 changes: 0 additions & 2 deletions helloworld-rf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
<version>${version.org.richfaces}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>
Expand Down
3 changes: 1 addition & 2 deletions jts/application-component-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
<version>12.0.0-SNAPSHOT</version>
</parent>
<artifactId>jts-application-component-2</artifactId>
<packaging>jar</packaging>
<name>${qs.name.prefix} jts - application-component-2</name>
<description>A project that demonstrates how to use CMT with JTS; the application-component-2 POM file</description>

Expand Down Expand Up @@ -82,8 +81,8 @@
<configuration>
<ejbVersion>3.2</ejbVersion>
<!-- this is false by default -->
<classifier>ejb</classifier>
<generateClient>true</generateClient>
<jarName></jarName>
<clientExcludes>
<clientExclude>**/*Impl.class</clientExclude>
<clientExclude>**/*MDB.class</clientExclude>
Expand Down
6 changes: 6 additions & 0 deletions kitchensink-angularjs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down
6 changes: 6 additions & 0 deletions kitchensink-html5-mobile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<profiles>
Expand Down
6 changes: 6 additions & 0 deletions kitchensink-jsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

</project>
6 changes: 6 additions & 0 deletions kitchensink-ml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down
6 changes: 6 additions & 0 deletions kitchensink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.2_spec</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>23</version>
<version>25</version>
<relativePath />
</parent>
<groupId>org.wildfly.quickstarts</groupId>
Expand Down
11 changes: 6 additions & 5 deletions spring-petclinic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,8 @@
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<!-- not jdk9 compatible-->
<!--<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
Expand All @@ -374,24 +375,24 @@
</goals>
</execution>
</executions>
</plugin>
</plugin>-->
</plugins>
</build>
<reporting>
<plugins>

<!-- integrate maven-cobertura-plugin to project site -->
<plugin>
<!-- commented out as it is not JDK9 compatibile -->
<!-- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
<configuration>
<formats>
<format>html</format>
</formats>
<check></check>
</configuration>
</plugin>
</plugin>-->
</plugins>
</reporting>

Expand Down
2 changes: 1 addition & 1 deletion wicket-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<artifactId>wicket-war</artifactId>
<version>12.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>${qs.name.prefix} Quickstart: wicket-war</name>
<name>${qs.name.prefix} wicket-war</name>
<description>
A sample JAVA EE 7 project demonstrating how to use Wicket Framework with JBoss WildFly.
WAR version (everything in a single .war file).
Expand Down

0 comments on commit d700ae0

Please sign in to comment.