Skip to content

Commit

Permalink
Closes ORNL#7
Browse files Browse the repository at this point in the history
javax.activation was removed from JDK. Added it back as a dependency.
Similar problem encountered here: spotify/dockerfile-maven#90
  • Loading branch information
Jason Bonior committed May 29, 2019
1 parent 291afe4 commit bad514d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ Then execute with
```sh
java -jar target/keytrans-server-<version>.jar
```
#### Optional: Setting the Server URI
By default, the server URI is set to 0.0.0.0:8000. The server URI is set in: gov.ornl.tasqc.keytrans/src/gov/ornl/tasqc/keytrans/KeyTransLauncher.java, line #58. This must be set before building the server.

## Properties

Properties are defined in the config.properties file. Currently supported properties are:
Expand Down
2 changes: 1 addition & 1 deletion gov.ornl.tasqc.keytrans/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>gov.ornl.tasqc.keytrans</groupId>
<artifactId>keytrans-server</artifactId>
<name>keytrans-server</name>
<version>0.2-SNAPSHOT</version>
<version>0.3-SNAPSHOT</version>
<build>
<sourceDirectory>src/gov/ornl/tasqc/keytrans</sourceDirectory>
<resources>
Expand Down
9 changes: 7 additions & 2 deletions gov.ornl.tasqc.keytrans/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<artifactId>keytrans-server</artifactId>
<packaging>jar</packaging>
<version>0.2-SNAPSHOT</version>
<version>0.3-SNAPSHOT</version>
<name>keytrans-server</name>

<dependencyManagement>
Expand Down Expand Up @@ -48,7 +48,12 @@
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit bad514d

Please # to comment.