Skip to content

Commit 634c975

Browse files
Split into submodules
1 parent ef1e0df commit 634c975

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+56
-23
lines changed

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/bin/
2-
/target/
3-
/.settings
4-
/.classpath
5-
/.project
6-
/resources
1+
bin/
2+
target/
3+
.settings/
4+
.classpath
5+
.project
6+
resources/

YASL-Core/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>YASL</groupId>
5+
<artifactId>YASL</artifactId>
6+
<version>0.0.1</version>
7+
</parent>
8+
<artifactId>YASL-Core</artifactId>
9+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

YASL-Tests/pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>YASL</groupId>
5+
<artifactId>YASL</artifactId>
6+
<version>0.0.1</version>
7+
</parent>
8+
<artifactId>YASL-Tests</artifactId>
9+
<groupId>YASL-Tests</groupId>
10+
<dependencies>
11+
<dependency>
12+
<groupId>YASL</groupId>
13+
<artifactId>YASL-Core</artifactId>
14+
<version>0.0.1</version>
15+
</dependency>
16+
17+
<!-- https://mvnrepository.com/artifact/junit/junit -->
18+
<dependency>
19+
<groupId>junit</groupId>
20+
<artifactId>junit</artifactId>
21+
<version>4.12</version>
22+
<scope>test</scope>
23+
</dependency>
24+
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
25+
<dependency>
26+
<groupId>org.mockito</groupId>
27+
<artifactId>mockito-all</artifactId>
28+
<version>1.10.19</version>
29+
<scope>test</scope>
30+
</dependency>
31+
</dependencies>
32+
</project>
File renamed without changes.

pom.xml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>VKSF_Searcher</groupId>
5-
<artifactId>VKSF_Searcher</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
4+
<groupId>YASL</groupId>
5+
<artifactId>YASL</artifactId>
6+
<version>0.0.1</version>
77
<build>
88
<sourceDirectory>src</sourceDirectory>
99
<plugins>
@@ -19,19 +19,11 @@
1919
</build>
2020

2121
<dependencies>
22-
<!-- https://mvnrepository.com/artifact/junit/junit -->
23-
<dependency>
24-
<groupId>junit</groupId>
25-
<artifactId>junit</artifactId>
26-
<version>4.12</version>
27-
<scope>test</scope>
28-
</dependency>
29-
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
30-
<dependency>
31-
<groupId>org.mockito</groupId>
32-
<artifactId>mockito-all</artifactId>
33-
<version>1.10.19</version>
34-
<scope>test</scope>
35-
</dependency>
3622
</dependencies>
23+
24+
<packaging>pom</packaging>
25+
<modules>
26+
<module>YASL-Core</module>
27+
<module>YASL-Tests</module>
28+
</modules>
3729
</project>

0 commit comments

Comments
 (0)