Skip to content

Commit b3b103a

Browse files
Split into submodules
1 parent ef1e0df commit b3b103a

Some content is hidden

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

47 files changed

+15
-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/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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)