-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
97 lines (90 loc) · 2.96 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.socialsla</groupId>
<artifactId>SocialSLA-WEKA-JPA</artifactId>
<version>0.0.4</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>nz.ac.waikato.cms.weka</groupId>
<artifactId>weka-dev</artifactId>
<version>3.7.5</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.0.Final</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.10</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0-SP4</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0-SP4</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1.0-PFD-1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>br.com.socialsla</groupId>
<artifactId>CDI-Utils</artifactId>
<version>0.0.2</version>
</dependency>
</dependencies>
<description>
What makes me want to develop this project:
* Not having to worry about parameters of access to the database, since having my integrated application to JPA.
* Use Entities (POJO) JPA and its metadata to generate the ARFF when you need to outsource information for use by third parties.
* Generate new Entity (POJO) JPA based on information obtained in the ARFF.
</description>
<scm>
<url>scm:git:https://github.com/fracpete/ptstemmer-weka-package</url>
<connection>scm:[email protected]:SocialSLA/Weka-JPA-Persistence.git</connection>
<developerConnection>[email protected]:SocialSLA/Weka-JPA-Persistence.git</developerConnection>
<tag>Weka, jpa, persistence, hibernate</tag>
</scm>
<organization>
<name>Social SLA</name>
<url>http://socialsla.github.io/</url>
</organization>
<url>http://socialsla.github.io/Weka-JPA-Persistence</url>
<name>Weka JPA Persistence</name>
<inceptionYear>2015</inceptionYear>
<issueManagement>
<system>GiHub Issues</system>
<url>https://github.com/SocialSLA/Weka-JPA-Persistence/issues</url>
</issueManagement>
</project>