-
Notifications
You must be signed in to change notification settings - Fork 31
migration from gradle to maven #20
Changes from 6 commits
cef0659
d2833e6
76ce30a
44930a9
c9a40bb
f4528a9
83e989f
47226f1
085e644
580f6f3
8e5b334
f53a8e5
ade25c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,4 +11,5 @@ build/ | |
|
|
||
| .classpath | ||
| .project | ||
| .settings/ | ||
| .settings/ | ||
| /target/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| sudo: required | ||
| addons: | ||
| apt: | ||
| packages: | ||
| - oracle-java8-installer | ||
|
|
||
| language: java | ||
|
|
||
| jdk: | ||
| - oraclejdk8 | ||
|
|
||
| before_install: | ||
| - uname -a | ||
| - chmod +x pom.xml | ||
|
|
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # PRI | ||
| The versions are indicated by a version identification of N.0.X. This shall be read as the actually released version of the Artifact in the ARM is the version N.0 with the highest X. Once a release has been made, N is stepped to N+1. | ||
|
|
||
| ## 0.0.X | ||
|
||
|
|
||
| ### Migrated remrem github projects form gradle to maven | ||
|
|
||
| Migrated eiffel-remrem-shared project from gradle to maven | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| <?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> | ||
| <groupId>com.github.Ericsson</groupId> | ||
| <artifactId>eiffel-remrem-shared</artifactId> | ||
| <version>0.3.6</version> | ||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.1</version> | ||
| <configuration> | ||
| <source>1.8</source> | ||
| <target>1.8</target> | ||
| <fork>true</fork> | ||
| <executable>C:\Program Files\Java\jdk1.8.0_151\bin\javac</executable> | ||
|
||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <version>4.12</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.code.gson</groupId> | ||
| <artifactId>gson</artifactId> | ||
| <version>2.8.1</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>commons-codec</groupId> | ||
| <artifactId>commons-codec</artifactId> | ||
| <version>1.10</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> | ||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this file required ??
There was a problem hiding this comment.
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