Skip to content

Commit

Permalink
Merge pull request #12 from duncdrum/deps-updates
Browse files Browse the repository at this point in the history
Deps updates
  • Loading branch information
lcahlander authored Apr 10, 2021
2 parents 61ac9fc + ffc655f commit 369c92d
Show file tree
Hide file tree
Showing 8 changed files with 27,503 additions and 14,658 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ services:
- docker

env:
- img=existdb/existdb:latest
- img=existdb/existdb:release
# - img=existdb/existdb:latest
- img=existdb/existdb:5.2.0
- img=existdb/existdb:5.0.0

cache:
directories:
Expand All @@ -34,8 +35,8 @@ before_script:
- sleep 30

script:
- mvn test
# - npm run cypress -- --record
- mvn verify
# - cd src/main/polymer && polymer test

after_success:
- docker ps
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ see the contributions section at the end of this article.
### For Building from Source
- maven: `3.6.0`
- java: `8`
- (node: `8`)
- (node: `12`)
- (polymer-cli: `1.9.11`)

## Building from Source
Expand Down
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.exist-db</groupId>
<artifactId>exist-apps-parent</artifactId>
<version>1.9.1</version>
<version>1.10.0</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -62,8 +62,9 @@
<project.build.target>1.8</project.build.target>

<exist.version>5.0.0</exist.version>
<node.version>v12.16.1</node.version>
<npm.version>6.14.1</npm.version>
<node.version>v12.22.1</node.version>
<npm.version>7.9.0</npm.version>
<corenlp.version>3.9.2</corenlp.version>
<!-- See polymer-cli documentation -->
<browser.support>es5-bundled</browser.support>

Expand All @@ -83,36 +84,36 @@
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.9.2</version>
<version>${corenlp.version}</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.9.2</version>
<version>${corenlp.version}</version>
<classifier>javadoc</classifier>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.9.2</version>
<version>${corenlp.version}</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.9.2</version>
<version>${corenlp.version}</version>
<classifier>models</classifier>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.9.2</version>
<version>${corenlp.version}</version>
<classifier>models-english</classifier>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.9.2</version>
<version>${corenlp.version}</version>
<classifier>models-english-kbp</classifier>
</dependency>

Expand All @@ -125,7 +126,7 @@
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
<version>2.6.3</version>
<version>2.8.2</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -173,7 +174,7 @@
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<executions>
<execution>
<id>copy-compiled-polymer</id>
Expand Down Expand Up @@ -231,7 +232,7 @@
<phase>generate-resources</phase>
<!-- Optional configuration which provides for running any npm command -->
<configuration>
<arguments>ci</arguments>
<arguments>i</arguments>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -273,7 +274,6 @@
<plugin>
<groupId>ro.kuberam.maven.plugins</groupId>
<artifactId>kuberam-expath-plugin</artifactId>
<version>0.6.2</version>
<executions>
<execution>
<id>create-xar</id>
Expand Down Expand Up @@ -335,7 +335,7 @@
<pluginRepositories>
<pluginRepository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
<url>https://clojars.org/repo</url>
</pluginRepository>
</pluginRepositories>
</project>
Loading

0 comments on commit 369c92d

Please sign in to comment.