Skip to content

Commit 4c37355

Browse files
committed
Merge pull request #27 from fpoyer/maven_migration
Migrate product to Maven and remove Eclipse stuff
2 parents ce9b9f5 + bef6733 commit 4c37355

26 files changed

+364
-148
lines changed

.classpath

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
/doc
22
/dist
33
/bin/
4+
/target/
5+
6+
# Eclipse stuff
7+
.project
8+
.classpath
9+
.settings/
10+
11+
# properties file holding connection data for integration test
12+
demodb.properties
13+

.project

Lines changed: 0 additions & 17 deletions
This file was deleted.

.settings/org.eclipse.ltk.core.refactoring.prefs

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
OpenERP Java Api
1+
Odoo Java Api
22
================
33

4-
A Java API to connect to OpenERP and manage data using the XMLRPC interface.
4+
A Java API to connect to Odoo and manage data using the XMLRPC interface.
55

6-
The API reduces the amount of boiler plate code needed to communicate with OpenERP by doing error checking and type conversions.
6+
The API reduces the amount of boiler plate code needed to communicate with Odoo by doing error checking and type conversions.
77

88
For more information, including a Wiki please see the project on SourceForge: [https://sourceforge.net/projects/openerpjavaapi/](https://sourceforge.net/projects/openerpjavaapi)
99

build.xml

Lines changed: 0 additions & 64 deletions
This file was deleted.

libext/ws-commons-util-1.0.2.jar

-33.6 KB
Binary file not shown.

libext/xmlrpc-client-3.1.3.jar

-57.2 KB
Binary file not shown.

libext/xmlrpc-common-3.1.3.jar

-107 KB
Binary file not shown.

pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.debortoliwines</groupId>
6+
<artifactId>odoo-java-api</artifactId>
7+
<version>2.0.0</version>
8+
<packaging>jar</packaging>
9+
10+
<name>odoo-java-api</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<maven.compiler.source>1.8</maven.compiler.source>
16+
<maven.compiler.target>1.8</maven.compiler.target>
17+
</properties>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<version>4.12</version>
24+
<scope>test</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.apache.xmlrpc</groupId>
28+
<artifactId>xmlrpc-client</artifactId>
29+
<version>3.1.3</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.assertj</groupId>
33+
<artifactId>assertj-core</artifactId>
34+
<version>3.3.0</version>
35+
</dependency>
36+
</dependencies>
37+
</project>

0 commit comments

Comments
 (0)