Skip to content

Commit 94b0d8c

Browse files
authored
Migrated from gradel to Maven (#13)
1 parent c3ef3ed commit 94b0d8c

File tree

10 files changed

+44
-327
lines changed

10 files changed

+44
-327
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ bin/
22
.classpath
33
.project
44
.settings/
5+
/target/

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
sudo: required
2+
3+
language: java
4+
5+
jdk:
6+
- oraclejdk8
7+
8+
before_install:
9+
- uname -a
10+
- chmod +x pom.xml
11+
12+
script:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.0.8
2+
- Migrated from gradle to maven
3+
14
## 0.0.7
25
- Added method to get template for event types.
36

@@ -17,4 +20,4 @@
1720
- Added copyright headers to the source code.
1821

1922
## 0.0.1
20-
- Added
23+
- Added

build.gradle

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

gradle/wrapper/gradle-wrapper.jar

-52.4 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

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

gradlew

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

gradlew.bat

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

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.github.Ericsson</groupId>
8+
<artifactId>eiffel-remrem-parent</artifactId>
9+
<version>0.0.2</version>
10+
</parent>
11+
<artifactId>eiffel-remrem-protocol-interface</artifactId>
12+
<version>0.0.8</version>
13+
<repositories>
14+
<repository>
15+
<id>jitpack.io</id>
16+
<name>Jitpack Repository</name>
17+
<url>https://jitpack.io/</url>
18+
</repository>
19+
</repositories>
20+
<dependencies>
21+
<dependency>
22+
<groupId>com.google.code.gson</groupId>
23+
<artifactId>gson</artifactId>
24+
<scope>compile</scope>
25+
</dependency>
26+
</dependencies>
27+
</project>

settings.gradle

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

0 commit comments

Comments
 (0)