Skip to content

Commit 246dddb

Browse files
committed
Moved generic classifier analysis files to a new project. Annoying while making changes to core.
1 parent 3498203 commit 246dddb

File tree

7 files changed

+43
-0
lines changed

7 files changed

+43
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ test/output/
99
*.class
1010
.classpath
1111
.project
12+
.settings
1213
output/
1314
target/
1415
dependencies/

classify/pom.xml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>ca.ubc.ece.salt</groupId>
7+
<artifactId>pangor</artifactId>
8+
<version>0.1-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>pangor-classify</artifactId>
12+
<packaging>jar</packaging>
13+
14+
<name>Pangor Classifier Analysis</name>
15+
16+
<inceptionYear>2016</inceptionYear>
17+
18+
<build>
19+
<sourceDirectory>src</sourceDirectory>
20+
<testSourceDirectory>test/src</testSourceDirectory>
21+
<plugins>
22+
<plugin>
23+
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>3.3</version>
25+
<configuration>
26+
<source>1.8</source>
27+
<target>1.8</target>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
32+
33+
<dependencies>
34+
<dependency>
35+
<groupId>ca.ubc.ece.salt</groupId>
36+
<artifactId>pangor-core</artifactId>
37+
<version>0.1-SNAPSHOT</version>
38+
</dependency>
39+
</dependencies>
40+
41+
</project>

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252

5353
<modules>
5454
<module>core</module>
55+
<module>classify</module>
5556
<module>java</module>
5657
<module>java-classify</module>
5758
</modules>

0 commit comments

Comments
 (0)