Skip to content

Commit 5bcb667

Browse files
committed
updated dependencies
1 parent 886544f commit 5bcb667

File tree

5 files changed

+22
-12
lines changed

5 files changed

+22
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
/.idea/libraries
99
/jcp-tests/jcp-test-jep238/build.log
1010
/jcp-tests/jcp-test-gradle/.buildProfile/report/
11+
/jcp/.flattened-pom.xml

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111

1212
# Changelog
1313

14+
__7.0.5 (SNAPSHOT)__
15+
16+
- added support of build under JDK 16
17+
- updated dependencies
18+
1419
__7.0.4 (26-sep-2020)__
1520

1621
- fixed default flag state `keep comments` for start in CLI

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
__7.0.5 (SNAPSHOT)__
2+
3+
- added support of build under JDK 16
4+
- updated dependencies
5+
16
7.0.4 (26-sep-2020)
27
- fixed default flag state `keep comments` for start in CLI mode [#24](https://github.com/raydac/java-comment-preprocessor/issues/24)
38
- fixed working directory detection in CLI mode

jcp/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@
6262
<configuration>
6363
<!--<failOnError>false</failOnError>-->
6464
<sourceFileExcludes>
65-
<exclude>HelpMojo.java</exclude>
65+
<exclude>**/HelpMojo.java</exclude>
6666
<exclude>**/AntPathMatcher.java</exclude>
67-
<exclude>com/igormaznitsa/meta/**/*.*</exclude>
6867
</sourceFileExcludes>
6968
</configuration>
7069
</execution>
@@ -206,13 +205,13 @@
206205
<dependency>
207206
<groupId>org.powermock</groupId>
208207
<artifactId>powermock-module-junit4</artifactId>
209-
<version>2.0.0</version>
208+
<version>2.0.9</version>
210209
<scope>test</scope>
211210
</dependency>
212211
<dependency>
213212
<groupId>org.powermock</groupId>
214213
<artifactId>powermock-api-mockito2</artifactId>
215-
<version>2.0.0</version>
214+
<version>2.0.9</version>
216215
<scope>test</scope>
217216
</dependency>
218217

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<timestamp>${maven.build.timestamp}</timestamp>
1717
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
1818
<min.maven.api>3.0</min.maven.api>
19-
<junit.version>5.4.2</junit.version>
19+
<junit.version>5.7.2</junit.version>
2020
<maven.compiler.source>1.8</maven.compiler.source>
2121
<maven.compiler.target>1.8</maven.compiler.target>
2222
</properties>
@@ -105,12 +105,12 @@
105105
<plugin>
106106
<groupId>org.apache.maven.plugins</groupId>
107107
<artifactId>maven-assembly-plugin</artifactId>
108-
<version>3.1.0</version>
108+
<version>3.3.0</version>
109109
</plugin>
110110
<plugin>
111111
<groupId>org.apache.maven.plugins</groupId>
112112
<artifactId>maven-surefire-plugin</artifactId>
113-
<version>3.0.0-M1</version>
113+
<version>3.0.0-M5</version>
114114
</plugin>
115115
<plugin>
116116
<groupId>org.apache.maven.plugins</groupId>
@@ -125,12 +125,12 @@
125125
<plugin>
126126
<groupId>org.apache.maven.plugins</groupId>
127127
<artifactId>maven-source-plugin</artifactId>
128-
<version>3.0.1</version>
128+
<version>3.2.0</version>
129129
</plugin>
130130
<plugin>
131131
<groupId>org.apache.maven.plugins</groupId>
132132
<artifactId>maven-gpg-plugin</artifactId>
133-
<version>1.6</version>
133+
<version>3.0.1</version>
134134
</plugin>
135135
<plugin>
136136
<groupId>org.apache.maven.plugins</groupId>
@@ -140,7 +140,7 @@
140140
<plugin>
141141
<groupId>org.codehaus.mojo</groupId>
142142
<artifactId>animal-sniffer-maven-plugin</artifactId>
143-
<version>1.17</version>
143+
<version>1.18</version>
144144
</plugin>
145145
<plugin>
146146
<groupId>org.apache.maven.plugins</groupId>
@@ -150,12 +150,12 @@
150150
<plugin>
151151
<groupId>org.apache.maven.plugins</groupId>
152152
<artifactId>maven-jar-plugin</artifactId>
153-
<version>3.1.1</version>
153+
<version>3.2.0</version>
154154
</plugin>
155155
<plugin>
156156
<groupId>org.apache.maven.plugins</groupId>
157157
<artifactId>maven-shade-plugin</artifactId>
158-
<version>3.2.1</version>
158+
<version>3.2.4</version>
159159
</plugin>
160160
</plugins>
161161
</pluginManagement>

0 commit comments

Comments
 (0)