Skip to content

Commit

Permalink
moved from ant to maven
Browse files Browse the repository at this point in the history
Signed-off-by: Rifat Nabi <[email protected]>
  • Loading branch information
torifat committed Jun 17, 2012
1 parent c08ecf8 commit b8cf8c3
Show file tree
Hide file tree
Showing 18 changed files with 51 additions and 79 deletions.
11 changes: 5 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
.classpath
.project
.settings
bin
build
target/

.*
!.gitignore
!.travis.yml
Empty file removed README
Empty file.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
JAvroPhonetic
=============

A Java implementation of Avro Phonetic

Website: [http://omicronlab.com/](OmicronLab.com)

Compilation
-----------

We use maven to handle our dependencies.

* Install [Maven 3](http://maven.apache.org/download.html)
* Check out this repo and: `mvn clean install`
73 changes: 0 additions & 73 deletions build.xml

This file was deleted.

Binary file removed lib/commons-beanutils-1.8.3.jar
Binary file not shown.
Binary file removed lib/commons-digester3-3.0.jar
Binary file not shown.
Binary file removed lib/commons-logging-1.1.1.jar
Binary file not shown.
Binary file removed lib/junit-4.10.jar
Binary file not shown.
32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<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>com.omicronlab.avro</groupId>
<artifactId>avro-phonetic</artifactId>
<version>1.2</version>
<packaging>jar</packaging>

<name>JAvroPhonetic</name>
<url>http://omicronlab.com</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-digester3</artifactId>
<version>3.2</version>
<scope>compile</scope>
</dependency>
<!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b8cf8c3

Please sign in to comment.