Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Commit 5244f4a

Browse files
committed
mvn build success
1 parent 6c16170 commit 5244f4a

File tree

6 files changed

+62
-30
lines changed

6 files changed

+62
-30
lines changed

.classpath

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<attributes>
1111
<attribute name="optional" value="true"/>
1212
<attribute name="maven.pomderived" value="true"/>
13+
<attribute name="test" value="true"/>
1314
</attributes>
1415
</classpathentry>
1516
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
@@ -20,12 +21,30 @@
2021
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
2122
<attributes>
2223
<attribute name="maven.pomderived" value="true"/>
24+
<attribute name="test" value="true"/>
2325
</attributes>
2426
</classpathentry>
25-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
27+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
2628
<attributes>
2729
<attribute name="maven.pomderived" value="true"/>
2830
</attributes>
2931
</classpathentry>
32+
<classpathentry kind="src" path="target/generated-sources/annotations">
33+
<attributes>
34+
<attribute name="optional" value="true"/>
35+
<attribute name="maven.pomderived" value="true"/>
36+
<attribute name="ignore_optional_problems" value="true"/>
37+
<attribute name="m2e-apt" value="true"/>
38+
</attributes>
39+
</classpathentry>
40+
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
41+
<attributes>
42+
<attribute name="optional" value="true"/>
43+
<attribute name="maven.pomderived" value="true"/>
44+
<attribute name="ignore_optional_problems" value="true"/>
45+
<attribute name="m2e-apt" value="true"/>
46+
<attribute name="test" value="true"/>
47+
</attributes>
48+
</classpathentry>
3049
<classpathentry kind="output" path="target/classes"/>
3150
</classpath>

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
/release.properties
66
/pom.xml.releaseBackup
77
*.iml
8-
.idea
8+
.idea
9+
.vscode
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<faceted-project>
3-
<installed facet="java" version="1.7"/>
3+
<installed facet="java" version="1.8"/>
44
<installed facet="jboss.m2" version="1.0"/>
55
</faceted-project>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"bower": "1.8.8"
1111
},
1212
"scripts": {
13-
"test": "cd bower_components/js-cookie && ../../node/node \"../../node/node_modules/npm/bin/npm-cli.js\" install"
13+
"test": "cd bower_components/js-cookie && e:/Jevin/github-repos/java-cookie/node/node \"e:/Jevin/github-repos/java-cookie/node/node_modules/npm/bin/npm-cli.js\" install"
1414
}
1515
}

pom.xml

Lines changed: 37 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13-
<selenium.version>3.141.59</selenium.version>
14-
<wildfly.version>15.0.1.Final</wildfly.version>
13+
<selenium.version>2.45.0</selenium.version>
14+
<wildfly.version>20.0.1.Final</wildfly.version>
1515
<project.scm.id>java-cookie-scm</project.scm.id>
16+
<java.home>C:\Program Files\Java\jdk1.8.0_181</java.home>
1617
</properties>
1718
<licenses>
1819
<license>
@@ -45,16 +46,16 @@
4546
<plugins>
4647
<plugin>
4748
<artifactId>maven-compiler-plugin</artifactId>
48-
<version>3.1</version>
49+
<version>3.8.1</version>
4950
<configuration>
50-
<source>1.6</source>
51-
<target>1.6</target>
51+
<source>1.8</source>
52+
<target>1.8</target>
5253
</configuration>
5354
</plugin>
5455
<plugin>
5556
<groupId>org.apache.maven.plugins</groupId>
5657
<artifactId>maven-release-plugin</artifactId>
57-
<version>2.5.2</version>
58+
<version>3.0.0-M1</version>
5859
<configuration>
5960
<useReleaseProfile>false</useReleaseProfile>
6061
<releaseProfiles>release</releaseProfiles>
@@ -66,11 +67,18 @@
6667
</build>
6768
<dependencyManagement>
6869
<dependencies>
70+
<dependency>
71+
<groupId>sun.jdk</groupId>
72+
<artifactId>jconsole</artifactId>
73+
<version>1.8</version>
74+
<scope>system</scope>
75+
<systemPath>${java.home}\lib\jconsole.jar</systemPath>
76+
</dependency>
6977
<dependency>
7078
<groupId>org.jboss.arquillian</groupId>
7179
<artifactId>arquillian-bom</artifactId>
72-
<version>1.4.1.Final</version>
73-
<scope>import</scope>
80+
<version>1.6.0.Final</version>
81+
<scope>test</scope>
7482
<type>pom</type>
7583
</dependency>
7684
</dependencies>
@@ -85,12 +93,12 @@
8593
<dependency>
8694
<groupId>joda-time</groupId>
8795
<artifactId>joda-time</artifactId>
88-
<version>2.10.1</version>
96+
<version>2.10.6</version>
8997
</dependency>
9098
<dependency>
9199
<groupId>com.fasterxml.jackson.core</groupId>
92100
<artifactId>jackson-databind</artifactId>
93-
<version>2.9.8</version>
101+
<version>2.11.2</version>
94102
</dependency>
95103
<dependency>
96104
<groupId>junit</groupId>
@@ -101,7 +109,7 @@
101109
<dependency>
102110
<groupId>org.mockito</groupId>
103111
<artifactId>mockito-all</artifactId>
104-
<version>2.0.2-beta</version>
112+
<version>1.10.19</version>
105113
<scope>test</scope>
106114
</dependency>
107115
<dependency>
@@ -119,43 +127,43 @@
119127
<dependency>
120128
<groupId>org.jboss.arquillian.protocol</groupId>
121129
<artifactId>arquillian-protocol-servlet</artifactId>
122-
<version>1.4.1.Final</version>
130+
<version>1.6.0.Final</version>
123131
<scope>test</scope>
124132
</dependency>
125133
<dependency>
126134
<groupId>org.jboss.arquillian.junit</groupId>
127135
<artifactId>arquillian-junit-container</artifactId>
128-
<version>1.4.1.Final</version>
136+
<version>1.6.0.Final</version>
129137
<scope>test</scope>
130138
</dependency>
131139
<dependency>
132140
<groupId>org.wildfly.arquillian</groupId>
133141
<artifactId>wildfly-arquillian-container-managed</artifactId>
134-
<version>2.1.1.Final</version>
142+
<version>2.2.0.Final</version>
135143
<scope>test</scope>
136144
</dependency>
137145
<dependency>
138146
<groupId>org.jboss.shrinkwrap.resolver</groupId>
139147
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
140-
<version>3.1.3</version>
148+
<version>3.1.4</version>
141149
<scope>test</scope>
142150
</dependency>
143151
<dependency>
144152
<groupId>org.jboss.shrinkwrap.resolver</groupId>
145153
<artifactId>shrinkwrap-resolver-spi</artifactId>
146-
<version>3.1.3</version>
154+
<version>3.1.4</version>
147155
<scope>test</scope>
148156
</dependency>
149157
<dependency>
150158
<groupId>org.apache.httpcomponents</groupId>
151159
<artifactId>httpclient</artifactId>
152-
<version>4.5.7</version>
160+
<version>4.5.12</version>
153161
<scope>test</scope>
154162
</dependency>
155163
<dependency>
156164
<groupId>org.apache.httpcomponents</groupId>
157165
<artifactId>fluent-hc</artifactId>
158-
<version>4.5.7</version>
166+
<version>4.5.12</version>
159167
<scope>test</scope>
160168
</dependency>
161169
</dependencies>
@@ -169,6 +177,10 @@
169177
<plugins>
170178
<plugin>
171179
<artifactId>maven-dependency-plugin</artifactId>
180+
<!--<configuration>
181+
<source>1.8</source>
182+
<target>1.8</target>
183+
</configuration>-->
172184
<executions>
173185
<execution>
174186
<id>unpack</id>
@@ -192,9 +204,9 @@
192204
</executions>
193205
</plugin>
194206
<plugin>
195-
<groupId>org.codehaus.mojo</groupId>
196-
<artifactId>failsafe-maven-plugin</artifactId>
197-
<version>2.4.3-alpha-1</version>
207+
<groupId>org.apache.maven.plugins</groupId>
208+
<artifactId>maven-failsafe-plugin</artifactId>
209+
<version>3.0.0-M5</version>
198210
<executions>
199211
<execution>
200212
<goals>
@@ -215,8 +227,8 @@
215227
<goal>install-node-and-npm</goal>
216228
</goals>
217229
<configuration>
218-
<nodeVersion>v12.18.2</nodeVersion>
219-
<!--<npmVersion>6.8.0</npmVersion>-->
230+
<nodeVersion>v11.10.0</nodeVersion>
231+
<npmVersion>6.8.0</npmVersion>
220232
</configuration>
221233
</execution>
222234
<execution>
@@ -262,7 +274,7 @@
262274
<plugin>
263275
<groupId>org.apache.maven.plugins</groupId>
264276
<artifactId>maven-javadoc-plugin</artifactId>
265-
<version>3.0.1</version>
277+
<version>3.2.0</version>
266278
<executions>
267279
<execution>
268280
<id>attach-javadocs</id>
@@ -275,7 +287,7 @@
275287
<plugin>
276288
<groupId>org.apache.maven.plugins</groupId>
277289
<artifactId>maven-source-plugin</artifactId>
278-
<version>3.0.1</version>
290+
<version>3.2.1</version>
279291
<executions>
280292
<execution>
281293
<id>attach-sources</id>

src/test/resources/arquillian.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
66
<container qualifier="wildfly-managed" default="true">
77
<configuration>
8-
<property name="jbossHome">target/wildfly-15.0.1.Final</property>
8+
<property name="jbossHome">target/wildfly-20.0.1.Final</property>
99
<property name="javaVmArguments">-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n</property>
1010
</configuration>
1111
</container>

0 commit comments

Comments
 (0)