Skip to content

Commit

Permalink
Release 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Nov 6, 2018
1 parent 9d5130d commit c44c4be
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ A web application for generating chemical structure depictions from SMILES.
An image is available on DockerHub, [https://hub.docker.com/r/simolecule/cdkdepict/](https://hub.docker.com/r/simolecule/cdkdepict/). To launch a CDK Depict web serivce running on 8081:

```
$ docker run -p 8081:8080 simolecule/cdkdepict:1.2
$ docker run -p 8081:8080 simolecule/cdkdepict:1.3
```

#### Prepacked release

You can download prebuilt releases from GitHub:

* [`cdkdepict-1.2.war`](https://github.com/cdk/depict/releases/download/1.2/cdkdepict-1.2.war)
* [`cdkdepict-1.2.jar`](https://github.com/cdk/depict/releases/download/1.2/cdkdepict-1.2.jar)
* [`cdkdepict-1.3.war`](https://github.com/cdk/depict/releases/download/1.3/cdkdepict-1.3.war)
* [`cdkdepict-1.3.jar`](https://github.com/cdk/depict/releases/download/1.3/cdkdepict-1.3.jar)

#### Build

Expand All @@ -30,8 +30,8 @@ target directory. The WAR file can be deployed to an application server (e.g.
TomCat, Jetty, GlassFish, JBOSS) whilst the JAR launches it's own embedded server.

```
$ target/cdkdepict-1.2.war
$ target/cdkdepict-1.2.jar
$ target/cdkdepict-1.3.war
$ target/cdkdepict-1.3.jar
```

#### Embedded App
Expand All @@ -41,7 +41,7 @@ Run the following command and access the site 'http://localhost:8081' by web
browser.

```
$ java -jar target/cdkdepict-1.2.jar -httpPort 8081
$ java -jar target/cdkdepict-1.3.jar -httpPort 8081
```

### Docker container
Expand Down
2 changes: 1 addition & 1 deletion cdkdepict-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>cdkdepict</artifactId>
<groupId>org.openscience.cdk</groupId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cdkdepict-lib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cdkdepict-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>cdkdepict</artifactId>
<groupId>org.openscience.cdk</groupId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
</parent>
<packaging>war</packaging>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdkdepict</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.3</version>
<modules>
<module>cdkdepict-lib</module>
<module>cdkdepict-webapp</module>
Expand Down

0 comments on commit c44c4be

Please sign in to comment.