Skip to content

Commit f9adb28

Browse files
committed
update jmockit version
1 parent 50bf34a commit f9adb28

1 file changed

Lines changed: 27 additions & 24 deletions

File tree

payments-api/pom.xml

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.jmockit</groupId>
4040
<artifactId>jmockit</artifactId>
41-
<version>1.39</version>
41+
<version>1.25</version>
4242
<scope>test</scope>
4343
</dependency>
4444
</dependencies>
@@ -60,6 +60,32 @@
6060
<artifactId>coveralls-maven-plugin</artifactId>
6161
<version>4.3.0</version>
6262
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-deploy-plugin</artifactId>
66+
<version>3.0.0-M1</version>
67+
<configuration>
68+
<skip>true</skip>
69+
</configuration>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-assembly-plugin</artifactId>
73+
<configuration>
74+
<finalName>${project.artifactId}-${project.version}</finalName>
75+
<descriptorRefs>
76+
<descriptorRef>jar-with-dependencies</descriptorRef>
77+
</descriptorRefs>
78+
</configuration>
79+
<executions>
80+
<execution>
81+
<id>payments-api</id>
82+
<phase>package</phase>
83+
<goals>
84+
<goal>single</goal>
85+
</goals>
86+
</execution>
87+
</executions>
88+
</plugin>
6389
<!-- This plug-in instructs to use the mentioned JDK for compilation Reference:-
6490
http://maven.apache.org/plugins/maven-compiler-plugin/examples/compile-using-different-jdk.html -->
6591
<plugin>
@@ -83,33 +109,10 @@
83109
</archive>
84110
</configuration>
85111
</plugin>
86-
<plugin>
87-
<artifactId>maven-assembly-plugin</artifactId>
88-
<configuration>
89-
<finalName>${project.artifactId}-${project.version}</finalName>
90-
<descriptorRefs>
91-
<descriptorRef>jar-with-dependencies</descriptorRef>
92-
</descriptorRefs>
93-
</configuration>
94-
<executions>
95-
<execution>
96-
<id>payments-api</id>
97-
<phase>package</phase>
98-
<goals>
99-
<goal>single</goal>
100-
</goals>
101-
</execution>
102-
</executions>
103-
</plugin>
104112
<plugin>
105113
<groupId>org.apache.maven.plugins</groupId>
106114
<artifactId>maven-surefire-plugin</artifactId>
107115
<version>3.0.0-M3</version>
108-
<configuration>
109-
<argLine>
110-
-Djdk.attach.allowAttachSelf <!-- required to run test with jmockit on JDK 9 -->
111-
</argLine>
112-
</configuration>
113116
</plugin>
114117
<plugin>
115118
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)