Skip to content

Commit cb41be2

Browse files
committed
Version 0.1.0
1 parent 5c31edd commit cb41be2

File tree

8 files changed

+29
-10
lines changed

8 files changed

+29
-10
lines changed

pom.xml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>io.skullabs.stalkr</groupId>
1212
<artifactId>stalkr-parent</artifactId>
13-
<version>0.1.0-SNAPSHOT</version>
13+
<version>0.1.0</version>
1414
<name>Stalkr: The crawler took kit for Java</name>
1515
<packaging>pom</packaging>
1616

@@ -67,7 +67,25 @@
6767
</dependency>
6868
</dependencies>
6969
</dependencyManagement>
70-
70+
71+
<build>
72+
<pluginManagement>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-javadoc-plugin</artifactId>
77+
<version>2.10.1</version>
78+
<inherited>true</inherited>
79+
<configuration>
80+
<show>private</show>
81+
<nohelp>true</nohelp>
82+
<excludePackageNames>org.base64,com.deathbycaptcha,org.json</excludePackageNames>
83+
</configuration>
84+
</plugin>
85+
</plugins>
86+
</pluginManagement>
87+
</build>
88+
7189
<url>https://github.com/Skullabs/stalkr</url>
7290

7391
<licenses>

stalkr-binder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.skullabs.stalkr</groupId>
77
<artifactId>stalkr-parent</artifactId>
8-
<version>0.1.0-SNAPSHOT</version>
8+
<version>0.1.0</version>
99
</parent>
1010

1111
<artifactId>stalkr-binder</artifactId>

stalkr-commons/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<parent>
99
<groupId>io.skullabs.stalkr</groupId>
1010
<artifactId>stalkr-parent</artifactId>
11-
<version>0.1.0-SNAPSHOT</version>
11+
<version>0.1.0</version>
1212
</parent>
1313

1414
<artifactId>stalkr-commons</artifactId>
15-
<name>stalkr-commons</name>
15+
<name>Stalkr: Commons</name>
1616
<packaging>jar</packaging>
1717

1818
</project>

stalkr-crawler/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
<parent>
66
<groupId>io.skullabs.stalkr</groupId>
77
<artifactId>stalkr-parent</artifactId>
8-
<version>0.1.0-SNAPSHOT</version>
8+
<version>0.1.0</version>
99
</parent>
1010

1111
<artifactId>stalkr-crawler</artifactId>
12+
<name>Stalkr: Crawler</name>
1213

1314
<dependencies>
1415
<dependency>

stalkr-crawler/src/test/java/stalkr/crawler/SeraQueVaiChoverIntegrationTest.java renamed to stalkr-crawler/src/test/java/stalkr/crawler/SeraQueVaiChoverTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import trip.spi.Provided;
1515
import trip.spi.ServiceProvider;
1616

17-
public class SeraQueVaiChoverIntegrationTest {
17+
public class SeraQueVaiChoverTest {
1818

1919
@Provided
2020
JobRunner runner;

stalkr-death-by-captcha/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.skullabs.stalkr</groupId>
77
<artifactId>stalkr-parent</artifactId>
8-
<version>0.1.0-SNAPSHOT</version>
8+
<version>0.1.0</version>
99
</parent>
1010

1111
<artifactId>stalkr-death-by-captcha</artifactId>

stalkr-death-by-captcha/src/test/java/com/deathbycaptcha/SimpleCaptchaTest.java renamed to stalkr-death-by-captcha/src/test/java/com/deathbycaptcha/SimpleCaptchaIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import com.deathbycaptcha.Exception;
1717
import com.deathbycaptcha.SocketClient;
1818

19-
public class SimpleCaptchaTest {
19+
public class SimpleCaptchaIntegrationTest {
2020

2121
final String username = System.getProperty( "dbc-username" );
2222
final String password = System.getProperty( "dbc-password" );

stalkr-http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.skullabs.stalkr</groupId>
77
<artifactId>stalkr-parent</artifactId>
8-
<version>0.1.0-SNAPSHOT</version>
8+
<version>0.1.0</version>
99
</parent>
1010

1111
<artifactId>stalkr-http</artifactId>

0 commit comments

Comments
 (0)