|
136 | 136 | </execution> |
137 | 137 | </executions> |
138 | 138 | </plugin> |
139 | | - |
140 | | - <plugin> |
141 | | - <artifactId>maven-compiler-plugin</artifactId> |
142 | | - <configuration> |
143 | | - <source>1.8</source> |
144 | | - <target>1.8</target> |
145 | | - </configuration> |
146 | | - <version>3.7.0</version> |
147 | | - </plugin> |
148 | 139 |
|
149 | | - <plugin> |
150 | | - <groupId>org.apache.maven.plugins</groupId> |
151 | | - <artifactId>maven-javadoc-plugin</artifactId> |
152 | | - <configuration> |
153 | | - <tags> |
154 | | - <tag> |
155 | | - <name>complexity</name> |
156 | | - <placement>a</placement> |
157 | | - <head>Computational Complexity :</head> |
158 | | - </tag> |
159 | | - <tag> |
160 | | - <name>reference</name> |
161 | | - <placement>a</placement> |
162 | | - <head>Scientific Reference :</head> |
163 | | - </tag> |
164 | | - </tags> |
165 | | - <author>true</author> |
166 | | - <failOnError>flase</failOnError> |
167 | | - <nodeprecated>false</nodeprecated> |
168 | | - <nodeprecatedlist>false</nodeprecatedlist> |
169 | | - <noindex>false</noindex> |
170 | | - <nonavbar>false</nonavbar> |
171 | | - <notree>false</notree> |
172 | | - <show>public</show> |
173 | | - <source>1.8</source> |
174 | | - <splitindex>true</splitindex> |
175 | | - <use>true</use> |
176 | | - <version>true</version> |
177 | | - <windowtitle>The GraphStream ${project.version} API</windowtitle> |
178 | | - </configuration> |
179 | | - <executions> |
180 | | - <execution> |
181 | | - <id>attach-javadocs</id> |
182 | | - <goals> |
183 | | - <goal>jar</goal> |
184 | | - </goals> |
185 | | - <configuration> |
186 | | - <doclint>none</doclint> |
187 | | - </configuration> |
188 | | - </execution> |
189 | | - </executions> |
190 | | - <version>3.1.1</version> |
191 | | - </plugin> |
| 140 | + <plugin> |
| 141 | + <artifactId>maven-compiler-plugin</artifactId> |
| 142 | + <configuration> |
| 143 | + <source>1.8</source> |
| 144 | + <target>1.8</target> |
| 145 | + </configuration> |
| 146 | + <version>3.7.0</version> |
| 147 | + </plugin> |
| 148 | + |
| 149 | + <plugin> |
| 150 | + <groupId>org.apache.maven.plugins</groupId> |
| 151 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 152 | + <configuration> |
| 153 | + <tags> |
| 154 | + <tag> |
| 155 | + <name>complexity</name> |
| 156 | + <placement>a</placement> |
| 157 | + <head>Computational Complexity :</head> |
| 158 | + </tag> |
| 159 | + <tag> |
| 160 | + <name>reference</name> |
| 161 | + <placement>a</placement> |
| 162 | + <head>Scientific Reference :</head> |
| 163 | + </tag> |
| 164 | + </tags> |
| 165 | + <author>true</author> |
| 166 | + <failOnError>flase</failOnError> |
| 167 | + <nodeprecated>false</nodeprecated> |
| 168 | + <nodeprecatedlist>false</nodeprecatedlist> |
| 169 | + <noindex>false</noindex> |
| 170 | + <nonavbar>false</nonavbar> |
| 171 | + <notree>false</notree> |
| 172 | + <show>public</show> |
| 173 | + <source>1.8</source> |
| 174 | + <splitindex>true</splitindex> |
| 175 | + <use>true</use> |
| 176 | + <version>true</version> |
| 177 | + <windowtitle>The GraphStream ${project.version} API</windowtitle> |
| 178 | + </configuration> |
| 179 | + <executions> |
| 180 | + <execution> |
| 181 | + <id>attach-javadocs</id> |
| 182 | + <goals> |
| 183 | + <goal>jar</goal> |
| 184 | + </goals> |
| 185 | + <configuration> |
| 186 | + <doclint>none</doclint> |
| 187 | + </configuration> |
| 188 | + </execution> |
| 189 | + </executions> |
| 190 | + <version>3.1.1</version> |
| 191 | + </plugin> |
192 | 192 |
|
193 | | - <plugin> |
194 | | - <groupId>org.apache.maven.plugins</groupId> |
195 | | - <artifactId>maven-surefire-plugin</artifactId> |
196 | | - <configuration> |
197 | | - <excludes> |
198 | | - <exclude>org/graphstream/algorithm/test/TestGenerator*</exclude> |
199 | | - <exclude>**/*$*</exclude> |
200 | | - </excludes> |
201 | | - </configuration> |
202 | | - <version>2.18.1</version> |
203 | | - </plugin> |
204 | | - <plugin> |
205 | | - <artifactId>maven-assembly-plugin</artifactId> |
206 | | - <configuration> |
207 | | - <archive> |
208 | | - <manifest> |
209 | | - <mainClass>org.graphstream.util.GraphDiff</mainClass> |
210 | | - </manifest> |
211 | | - </archive> |
212 | | - <descriptorRefs> |
213 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
214 | | - </descriptorRefs> |
215 | | - </configuration> |
216 | | - <executions> |
217 | | - <execution> |
218 | | - <id>make-assembly</id> <!-- this is used for inheritance merges --> |
219 | | - <phase>prepare-package</phase> <!-- bind to the prepare-packaging phase so that it can be signed --> |
220 | | - <goals> |
221 | | - <goal>single</goal> |
222 | | - </goals> |
223 | | - </execution> |
224 | | - </executions> |
225 | | - </plugin> |
226 | | - </plugins> |
227 | | - </build> |
| 193 | + <plugin> |
| 194 | + <groupId>org.apache.maven.plugins</groupId> |
| 195 | + <artifactId>maven-surefire-plugin</artifactId> |
| 196 | + <configuration> |
| 197 | + <excludes> |
| 198 | + <exclude>org/graphstream/algorithm/test/TestGenerator*</exclude> |
| 199 | + <exclude>**/*$*</exclude> |
| 200 | + </excludes> |
| 201 | + </configuration> |
| 202 | + <version>2.18.1</version> |
| 203 | + </plugin> |
| 204 | + <plugin> |
| 205 | + <artifactId>maven-assembly-plugin</artifactId> |
| 206 | + <configuration> |
| 207 | + <archive> |
| 208 | + <manifest> |
| 209 | + <mainClass>org.graphstream.util.GraphDiff</mainClass> |
| 210 | + </manifest> |
| 211 | + </archive> |
| 212 | + <descriptorRefs> |
| 213 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 214 | + </descriptorRefs> |
| 215 | + </configuration> |
| 216 | + <executions> |
| 217 | + <execution> |
| 218 | + <id>make-assembly</id> <!-- this is used for inheritance merges --> |
| 219 | + <phase>prepare-package</phase> <!-- bind to the prepare-packaging phase so that it can be signed --> |
| 220 | + <goals> |
| 221 | + <goal>single</goal> |
| 222 | + </goals> |
| 223 | + </execution> |
| 224 | + </executions> |
| 225 | + </plugin> |
| 226 | + </plugins> |
| 227 | + </build> |
228 | 228 |
|
229 | | - <repositories> |
230 | | - <repository> |
231 | | - <id>jitpack.io</id> |
232 | | - <url>https://jitpack.io</url> |
233 | | - </repository> |
234 | | - </repositories> |
| 229 | + <repositories> |
| 230 | + <repository> |
| 231 | + <id>jitpack.io</id> |
| 232 | + <url>https://jitpack.io</url> |
| 233 | + </repository> |
| 234 | + </repositories> |
235 | 235 |
|
236 | 236 |
|
237 | | - <dependencies> |
238 | | - <dependency> |
239 | | - <groupId>junit</groupId> |
240 | | - <artifactId>junit</artifactId> |
241 | | - <version>4.12</version> |
242 | | - <optional>false</optional> |
243 | | - <scope>test</scope> |
244 | | - </dependency> |
245 | | - <dependency> |
246 | | - <groupId>org.apache.commons</groupId> |
247 | | - <artifactId>commons-math</artifactId> |
248 | | - <version>2.1</version> |
249 | | - <optional>false</optional> |
250 | | - </dependency> |
251 | | - <dependency> |
252 | | - <groupId>org.apache.commons</groupId> |
253 | | - <artifactId>commons-math3</artifactId> |
254 | | - <version>3.4.1</version> |
255 | | - <optional>false</optional> |
256 | | - </dependency> |
257 | | - <dependency> |
258 | | - <groupId>org.jfree</groupId> |
259 | | - <artifactId>jfreechart</artifactId> |
260 | | - <version>1.0.14</version> |
261 | | - <optional>false</optional> |
262 | | - </dependency> |
263 | | - <dependency> |
264 | | - <groupId>com.github.graphstream</groupId> |
265 | | - <artifactId>gs-core</artifactId> |
266 | | - <version>dev-SNAPSHOT</version> |
267 | | - <scope>provided</scope> |
268 | | - </dependency> |
269 | | - </dependencies> |
270 | | - </project> |
| 237 | + <dependencies> |
| 238 | + <dependency> |
| 239 | + <groupId>junit</groupId> |
| 240 | + <artifactId>junit</artifactId> |
| 241 | + <version>4.12</version> |
| 242 | + <optional>false</optional> |
| 243 | + <scope>test</scope> |
| 244 | + </dependency> |
| 245 | + <dependency> |
| 246 | + <groupId>org.apache.commons</groupId> |
| 247 | + <artifactId>commons-math</artifactId> |
| 248 | + <version>2.1</version> |
| 249 | + <optional>false</optional> |
| 250 | + </dependency> |
| 251 | + <dependency> |
| 252 | + <groupId>org.apache.commons</groupId> |
| 253 | + <artifactId>commons-math3</artifactId> |
| 254 | + <version>3.4.1</version> |
| 255 | + <optional>false</optional> |
| 256 | + </dependency> |
| 257 | + <dependency> |
| 258 | + <groupId>org.jfree</groupId> |
| 259 | + <artifactId>jfreechart</artifactId> |
| 260 | + <version>1.0.14</version> |
| 261 | + <optional>false</optional> |
| 262 | + </dependency> |
| 263 | + <dependency> |
| 264 | + <groupId>com.github.graphstream</groupId> |
| 265 | + <artifactId>gs-core</artifactId> |
| 266 | + <version>dev-SNAPSHOT</version> |
| 267 | + <scope>provided</scope> |
| 268 | + </dependency> |
| 269 | + </dependencies> |
| 270 | +</project> |
0 commit comments