Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
.idea/
*.iml

gradle/
gradlew
gradlew.bat

build/
.gradle/
/bin/

.classpath
.project
.settings/
.settings/
/target/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this file required ??

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes we are ignoring these folder while pushing to git from local

17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
sudo: required
addons:
apt:
packages:
- oracle-java8-installer

language: java

jdk:
- oraclejdk8

before_install:
- uname -a
- chmod +x pom.xml

script:

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.7
- Migrated from gradle to maven

## 0.3.6
- Updated GSON version

## 0.3.5
- Removed ldap related functionality from shared

Expand Down
57 changes: 0 additions & 57 deletions build.gradle

This file was deleted.

39 changes: 39 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.Ericsson</groupId>
<artifactId>eiffel-remrem-parent</artifactId>
<version>0.0.2</version>
</parent>
<artifactId>eiffel-remrem-shared</artifactId>
<version>0.3.7</version>
<packaging>jar</packaging>
<repositories>
<repository>
<id>jitpack.io</id>
<name>Jitpack Repository</name>
<url>https://jitpack.io/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
34 changes: 0 additions & 34 deletions settings.gradle

This file was deleted.