From b27579c37ccf7e92161c0ff870d8e90c18ae31f0 Mon Sep 17 00:00:00 2001 From: terminator48 Date: Sat, 2 Apr 2016 16:02:31 +0600 Subject: [PATCH] Maven project basic setup --- configuration/pom.xml | 15 ++++++++ core/pom.xml | 14 ++++++++ pom.xml | 81 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 configuration/pom.xml create mode 100644 core/pom.xml create mode 100644 pom.xml diff --git a/configuration/pom.xml b/configuration/pom.xml new file mode 100644 index 0000000..0556adf --- /dev/null +++ b/configuration/pom.xml @@ -0,0 +1,15 @@ + + + + arcadexsystem + eu.arcadex.system + ${global.version} + + 4.0.0 + + configuration + + + \ No newline at end of file diff --git a/core/pom.xml b/core/pom.xml new file mode 100644 index 0000000..d0223ea --- /dev/null +++ b/core/pom.xml @@ -0,0 +1,14 @@ + + + + arcadexsystem + eu.arcadex.system + ${global.version} + + 4.0.0 + + core + jar + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..5d7f314 --- /dev/null +++ b/pom.xml @@ -0,0 +1,81 @@ + + + 4.0.0 + + + 0.1 + + + eu.arcadex.system + arcadexsystem + pom + ${global.version} + + + core + configuration + + + + + SonatypeRepo + https://oss.sonatype.org/content/repositories/snapshots + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5 + + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-shade-plugin + 2.1 + + + package + + shade + + + + + + + *:* + + **/*.java + **/*.SF + **/*.DSA + + + + + + eu.arcadex.system.ArcadexSystemImpl + + + + + + + + + + org.projectlombok + lombok + 1.16.2 + provided + + + \ No newline at end of file