Skip to content

Commit

Permalink
add jaxb impl dep
Browse files Browse the repository at this point in the history
  • Loading branch information
akashche committed Apr 18, 2018
1 parent db3c8c3 commit f6c6485
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<version.junit>4.12</version.junit>
<version.gson>2.8.0</version.gson>
<version.guava>21.0</version.guava>
<version.jaxb>2.2.11</version.jaxb>
<!-- plugins versions -->
<version.maven_compiler_plugin>3.1</version.maven_compiler_plugin>
<version.maven_jar_plugin>2.4</version.maven_jar_plugin>
Expand Down
16 changes: 16 additions & 0 deletions wixgen-jaxb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@
<name>Wix Toolset Descriptors Generator JAXB Classes</name>

<dependencies>
<!-- JAXB -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${version.jaxb}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${version.jaxb}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${version.jaxb}</version>
</dependency>
<!-- common utilities -->
<dependency>
<groupId>commons-lang</groupId>
Expand Down

0 comments on commit f6c6485

Please sign in to comment.