Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 22d1351

Browse files
zjaishuxdurvak
authored andcommitted
migration from gradle to maven (#20)
* migrate from gradle to maven
1 parent f4800b3 commit 22d1351

File tree

6 files changed

+64
-100
lines changed

6 files changed

+64
-100
lines changed

.gitignore

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
.idea/
22
*.iml
33

4-
gradle/
5-
gradlew
6-
gradlew.bat
7-
8-
build/
9-
.gradle/
10-
/bin/
11-
124
.classpath
135
.project
14-
.settings/
6+
.settings/
7+
/target/

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
sudo: required
2+
addons:
3+
apt:
4+
packages:
5+
- oracle-java8-installer
6+
7+
language: java
8+
9+
jdk:
10+
- oraclejdk8
11+
12+
before_install:
13+
- uname -a
14+
- chmod +x pom.xml
15+
16+
script:
17+

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.3.7
2+
- Migrated from gradle to maven
3+
4+
## 0.3.6
5+
- Updated GSON version
6+
17
## 0.3.5
28
- Removed ldap related functionality from shared
39

build.gradle

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

pom.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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-shared</artifactId>
12+
<version>0.3.7</version>
13+
<packaging>jar</packaging>
14+
<repositories>
15+
<repository>
16+
<id>jitpack.io</id>
17+
<name>Jitpack Repository</name>
18+
<url>https://jitpack.io/</url>
19+
</repository>
20+
</repositories>
21+
<dependencies>
22+
<dependency>
23+
<groupId>com.google.code.gson</groupId>
24+
<artifactId>gson</artifactId>
25+
</dependency>
26+
</dependencies>
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<artifactId>maven-compiler-plugin</artifactId>
31+
<version>3.6.1</version>
32+
<configuration>
33+
<source>1.8</source>
34+
<target>1.8</target>
35+
</configuration>
36+
</plugin>
37+
</plugins>
38+
</build>
39+
</project>

settings.gradle

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

0 commit comments

Comments
 (0)