Skip to content

Commit 369c92d

Browse files
authored
Merge pull request #12 from duncdrum/deps-updates
Deps updates
2 parents 61ac9fc + ffc655f commit 369c92d

File tree

8 files changed

+27503
-14658
lines changed

8 files changed

+27503
-14658
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ services:
1313
- docker
1414

1515
env:
16-
- img=existdb/existdb:latest
17-
- img=existdb/existdb:release
16+
# - img=existdb/existdb:latest
17+
- img=existdb/existdb:5.2.0
18+
- img=existdb/existdb:5.0.0
1819

1920
cache:
2021
directories:
@@ -34,8 +35,8 @@ before_script:
3435
- sleep 30
3536

3637
script:
37-
- mvn test
38-
# - npm run cypress -- --record
38+
- mvn verify
39+
# - cd src/main/polymer && polymer test
3940

4041
after_success:
4142
- docker ps

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ see the contributions section at the end of this article.
2525
### For Building from Source
2626
- maven: `3.6.0`
2727
- java: `8`
28-
- (node: `8`)
28+
- (node: `12`)
2929
- (polymer-cli: `1.9.11`)
3030

3131
## Building from Source

pom.xml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.exist-db</groupId>
88
<artifactId>exist-apps-parent</artifactId>
9-
<version>1.9.1</version>
9+
<version>1.10.0</version>
1010
<relativePath/>
1111
</parent>
1212

@@ -62,8 +62,9 @@
6262
<project.build.target>1.8</project.build.target>
6363

6464
<exist.version>5.0.0</exist.version>
65-
<node.version>v12.16.1</node.version>
66-
<npm.version>6.14.1</npm.version>
65+
<node.version>v12.22.1</node.version>
66+
<npm.version>7.9.0</npm.version>
67+
<corenlp.version>3.9.2</corenlp.version>
6768
<!-- See polymer-cli documentation -->
6869
<browser.support>es5-bundled</browser.support>
6970

@@ -83,36 +84,36 @@
8384
<dependency>
8485
<groupId>edu.stanford.nlp</groupId>
8586
<artifactId>stanford-corenlp</artifactId>
86-
<version>3.9.2</version>
87+
<version>${corenlp.version}</version>
8788
</dependency>
8889
<dependency>
8990
<groupId>edu.stanford.nlp</groupId>
9091
<artifactId>stanford-corenlp</artifactId>
91-
<version>3.9.2</version>
92+
<version>${corenlp.version}</version>
9293
<classifier>javadoc</classifier>
9394
</dependency>
9495
<dependency>
9596
<groupId>edu.stanford.nlp</groupId>
9697
<artifactId>stanford-corenlp</artifactId>
97-
<version>3.9.2</version>
98+
<version>${corenlp.version}</version>
9899
<classifier>sources</classifier>
99100
</dependency>
100101
<dependency>
101102
<groupId>edu.stanford.nlp</groupId>
102103
<artifactId>stanford-corenlp</artifactId>
103-
<version>3.9.2</version>
104+
<version>${corenlp.version}</version>
104105
<classifier>models</classifier>
105106
</dependency>
106107
<dependency>
107108
<groupId>edu.stanford.nlp</groupId>
108109
<artifactId>stanford-corenlp</artifactId>
109-
<version>3.9.2</version>
110+
<version>${corenlp.version}</version>
110111
<classifier>models-english</classifier>
111112
</dependency>
112113
<dependency>
113114
<groupId>edu.stanford.nlp</groupId>
114115
<artifactId>stanford-corenlp</artifactId>
115-
<version>3.9.2</version>
116+
<version>${corenlp.version}</version>
116117
<classifier>models-english-kbp</classifier>
117118
</dependency>
118119

@@ -125,7 +126,7 @@
125126
<dependency>
126127
<groupId>org.xmlunit</groupId>
127128
<artifactId>xmlunit-core</artifactId>
128-
<version>2.6.3</version>
129+
<version>2.8.2</version>
129130
<scope>test</scope>
130131
</dependency>
131132

@@ -173,7 +174,7 @@
173174
<plugins>
174175
<plugin>
175176
<artifactId>maven-resources-plugin</artifactId>
176-
<version>3.1.0</version>
177+
<version>3.2.0</version>
177178
<executions>
178179
<execution>
179180
<id>copy-compiled-polymer</id>
@@ -231,7 +232,7 @@
231232
<phase>generate-resources</phase>
232233
<!-- Optional configuration which provides for running any npm command -->
233234
<configuration>
234-
<arguments>ci</arguments>
235+
<arguments>i</arguments>
235236
</configuration>
236237
</execution>
237238
<execution>
@@ -273,7 +274,6 @@
273274
<plugin>
274275
<groupId>ro.kuberam.maven.plugins</groupId>
275276
<artifactId>kuberam-expath-plugin</artifactId>
276-
<version>0.6.2</version>
277277
<executions>
278278
<execution>
279279
<id>create-xar</id>
@@ -335,7 +335,7 @@
335335
<pluginRepositories>
336336
<pluginRepository>
337337
<id>clojars.org</id>
338-
<url>http://clojars.org/repo</url>
338+
<url>https://clojars.org/repo</url>
339339
</pluginRepository>
340340
</pluginRepositories>
341341
</project>

0 commit comments

Comments
 (0)