|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | 5 | <groupId>org.piwik.java.tracking</groupId> |
6 | 6 | <artifactId>matomo-java-tracker</artifactId> |
7 | | - <version>1.4-SNAPSHOT</version> |
| 7 | + <version>1.5</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <name>Matomo Java Tracker</name> |
|
64 | 64 | </configuration> |
65 | 65 | </plugin> |
66 | 66 | <plugin> |
67 | | - <groupId>org.apache.maven.plugins</groupId> |
68 | | - <artifactId>maven-source-plugin</artifactId> |
69 | | - <version>3.2.1</version> |
70 | | - <executions> |
71 | | - <execution> |
72 | | - <id>attach-sources</id> |
73 | | - <goals> |
| 67 | + <groupId>org.apache.maven.plugins</groupId> |
| 68 | + <artifactId>maven-source-plugin</artifactId> |
| 69 | + <version>3.2.1</version> |
| 70 | + <executions> |
| 71 | + <execution> |
| 72 | + <id>attach-sources</id> |
| 73 | + <goals> |
74 | 74 | <goal>jar</goal> |
75 | | - </goals> |
76 | | - </execution> |
77 | | - </executions> |
| 75 | + </goals> |
| 76 | + </execution> |
| 77 | + </executions> |
78 | 78 | </plugin> |
79 | 79 | <plugin> |
80 | | - <groupId>org.apache.maven.plugins</groupId> |
81 | | - <artifactId>maven-javadoc-plugin</artifactId> |
82 | | - <version>3.2.0</version> |
83 | | - <executions> |
84 | | - <execution> |
85 | | - <id>attach-javadocs</id> |
86 | | - <goals> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 82 | + <version>3.2.0</version> |
| 83 | + <configuration> |
| 84 | +<!-- <release>8</release>--> |
| 85 | + </configuration> |
| 86 | + <executions> |
| 87 | + <execution> |
| 88 | + <id>attach-javadocs</id> |
| 89 | + <goals> |
87 | 90 | <goal>jar</goal> |
88 | | - </goals> |
89 | | - </execution> |
90 | | - </executions> |
| 91 | + </goals> |
| 92 | + </execution> |
| 93 | + </executions> |
91 | 94 | </plugin> |
92 | 95 | <plugin> |
93 | | - <groupId>org.pitest</groupId> |
94 | | - <artifactId>pitest-maven</artifactId> |
95 | | - <version>1.4.11</version> |
96 | | - <configuration> |
| 96 | + <groupId>org.pitest</groupId> |
| 97 | + <artifactId>pitest-maven</artifactId> |
| 98 | + <version>1.4.11</version> |
| 99 | + <configuration> |
97 | 100 | <targetClasses> |
98 | 101 | <param>org.piwik.java.tracking*</param> |
99 | 102 | </targetClasses> |
100 | 103 | <targetTests> |
101 | 104 | <param>org.piwik.java.tracking*</param> |
102 | 105 | </targetTests> |
103 | | - </configuration> |
| 106 | + </configuration> |
104 | 107 | </plugin> |
105 | 108 | <plugin> |
106 | | - <groupId>org.eluder.coveralls</groupId> |
107 | | - <artifactId>coveralls-maven-plugin</artifactId> |
108 | | - <version>4.3.0</version> |
| 109 | + <groupId>org.eluder.coveralls</groupId> |
| 110 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 111 | + <version>4.3.0</version> |
109 | 112 | </plugin> |
110 | 113 | <plugin> |
111 | | - <groupId>org.jacoco</groupId> |
112 | | - <artifactId>jacoco-maven-plugin</artifactId> |
113 | | - <version>0.8.5</version> |
114 | | - <executions> |
115 | | - <execution> |
116 | | - <id>prepare-agent</id> |
117 | | - <goals> |
118 | | - <goal>prepare-agent</goal> |
119 | | - </goals> |
120 | | - </execution> |
121 | | - </executions> |
| 114 | + <groupId>org.jacoco</groupId> |
| 115 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 116 | + <version>0.8.5</version> |
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>prepare-agent</id> |
| 120 | + <goals> |
| 121 | + <goal>prepare-agent</goal> |
| 122 | + </goals> |
| 123 | + </execution> |
| 124 | + </executions> |
122 | 125 | </plugin> |
123 | 126 | <plugin> |
124 | | - <groupId>org.apache.maven.plugins</groupId> |
125 | | - <artifactId>maven-gpg-plugin</artifactId> |
126 | | - <version>1.6</version> |
127 | | - <executions> |
128 | | - <execution> |
129 | | - <id>sign-artifacts</id> |
130 | | - <phase>verify</phase> |
131 | | - <goals> |
132 | | - <goal>sign</goal> |
133 | | - </goals> |
134 | | - </execution> |
135 | | - </executions> |
| 127 | + <groupId>org.apache.maven.plugins</groupId> |
| 128 | + <artifactId>maven-gpg-plugin</artifactId> |
| 129 | + <version>1.6</version> |
| 130 | + <executions> |
| 131 | + <execution> |
| 132 | + <id>sign-artifacts</id> |
| 133 | + <phase>verify</phase> |
| 134 | + <goals> |
| 135 | + <goal>sign</goal> |
| 136 | + </goals> |
| 137 | + </execution> |
| 138 | + </executions> |
136 | 139 | </plugin> |
137 | 140 | <plugin> |
138 | | - <groupId>org.sonatype.plugins</groupId> |
139 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
140 | | - <version>1.6.8</version> |
141 | | - <extensions>true</extensions> |
142 | | - <configuration> |
143 | | - <serverId>ossrh</serverId> |
144 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
145 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
146 | | - </configuration> |
| 141 | + <groupId>org.sonatype.plugins</groupId> |
| 142 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 143 | + <version>1.6.8</version> |
| 144 | + <extensions>true</extensions> |
| 145 | + <configuration> |
| 146 | + <serverId>ossrh</serverId> |
| 147 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 148 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 149 | + </configuration> |
147 | 150 | </plugin> |
148 | 151 | </plugins> |
149 | 152 | </build> |
|
167 | 170 | <dependency> |
168 | 171 | <groupId>org.mockito</groupId> |
169 | 172 | <artifactId>mockito-core</artifactId> |
170 | | - <version>3.3.3</version> |
| 173 | + <version>3.4.6</version> |
171 | 174 | <scope>test</scope> |
172 | 175 | </dependency> |
173 | 176 | <dependency> |
|
0 commit comments