Skip to content

Commit c3087e5

Browse files
committed
version update
1 parent 72cf8bc commit c3087e5

File tree

2 files changed

+128
-128
lines changed

2 files changed

+128
-128
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ then, add the `gs-core` and `gs-algo` to your dependencies:
4545
</dependency>
4646
```
4747

48-
You can use any version of `gs-core` and `gs-algo` you need, provided they are the same. Simply specify the desired version in the `<version>` tag. The version can be a git tag name (e.g. `2.0-alpha`), a commit number, or a branch name followed by `-SNAPSHOT` (e.g. `dev-SNAPSHOT`). More details on the [possible versions on jitpack](https://jitpack.io/#graphstream/gs-core).
48+
You can use any version of `gs-core` and `gs-algo` you need, provided they are the same. Simply specify the desired version in the `<version>` tag. The version can be a git tag name (e.g. `2.0`), a commit number, or a branch name followed by `-SNAPSHOT` (e.g. `dev-SNAPSHOT`). More details on the [possible versions on jitpack](https://jitpack.io/#graphstream/gs-core).
4949

5050
## Help
5151

pom.xml

Lines changed: 127 additions & 127 deletions
Original file line numberDiff line numberDiff line change
@@ -136,135 +136,135 @@
136136
</execution>
137137
</executions>
138138
</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>
148139

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>
192192

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>
228228

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>
235235

236236

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

Comments
 (0)