Skip to content

Commit

Permalink
Added new Spring dependencies. Changed compliance level from "5" to "…
Browse files Browse the repository at this point in the history
…1.5", as the former made m2Eclipse give imported projects a compliance level of 1.4. Added jaxb dependencies b/c generated src had compilation errors on jaxb annotations due to 1.5 compliance level.
  • Loading branch information
Jennifer Hickey committed Apr 20, 2010
1 parent a386b02 commit 707fab7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
14 changes: 14 additions & 0 deletions hqapi1/pom.xml
Expand Up @@ -112,6 +112,20 @@
<groupId>org.jvnet.ws.wadl</groupId>
<artifactId>wadl-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>

</dependencies>


</project>
21 changes: 19 additions & 2 deletions parent/pom.xml
Expand Up @@ -18,6 +18,8 @@
<junit.version>4.4</junit.version>
<log4j.version>1.2.14</log4j.version>
<wadl.version>1.0-SNAPSHOT</wadl.version>
<spring.version>3.0.1.RELEASE</spring.version>
<jaxb.version>2.1</jaxb.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -52,6 +54,21 @@
<artifactId>wadl-core</artifactId>
<version>${wadl.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -62,8 +79,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>5</source>
<target>5</target>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 707fab7

Please sign in to comment.