diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2019-03-31 22:35:39 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2019-03-31 22:35:39 -0700 |
commit | 59416923dcb3a756eaf532cc4259f2f6625c0762 (patch) | |
tree | 9082dae6616deac8fda432b7bfd80e4a52b6d9dc /build.gradle | |
parent | 79a129dd6327d932133d6b9a50190d3f4927bff9 (diff) | |
download | trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.gz trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.bz2 trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.zip |
Convert project to gradle
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 000000000..155a893a5 --- /dev/null +++ b/build.gradle @@ -0,0 +1,83 @@ +plugins { + id "java" + id "checkstyle" +} + +repositories { + mavenCentral() +} + +sourceCompatibility = "1.8" +compileJava.options.encoding = "UTF-8" + +checkstyle { + configFile = "gradle/checkstyle.xml" as File + checkstyleTest.enabled = false +} + +ext { + jettyVersion = "9.4.14.v20181114" + jerseyVersion = "2.28" + jacksonVersion = "2.9.8" +} + +dependencies { + implementation "commons-codec:commons-codec:1.11" + implementation "com.h2database:h2:1.4.197" + implementation "mysql:mysql-connector-java:5.1.47" // bug should be fixed in 8.0.13 + implementation "org.postgresql:postgresql:42.2.5" + implementation "com.microsoft.sqlserver:mssql-jdbc:7.2.0.jre8" + implementation "com.zaxxer:HikariCP:3.3.0" + implementation "io.netty:netty-all:4.1.33.Final" + implementation "org.slf4j:slf4j-jdk14:1.7.25" + implementation "com.google.inject:guice:4.2.2" + implementation "com.google.inject.extensions:guice-assistedinject:4.2.2" + implementation "org.owasp.encoder:encoder:1.2.2" + implementation "org.glassfish:javax.json:1.1.4" + implementation "org.eclipse.jetty:jetty-server:$jettyVersion" + implementation "org.eclipse.jetty:jetty-servlet:$jettyVersion" + implementation "org.eclipse.jetty:jetty-webapp:$jettyVersion" + implementation "org.eclipse.jetty:jetty-jndi:$jettyVersion" + implementation "org.eclipse.jetty:jetty-proxy:$jettyVersion" + implementation "org.eclipse.jetty.websocket:websocket-server:$jettyVersion" + implementation "org.glassfish.jersey.containers:jersey-container-servlet:$jerseyVersion" + implementation "org.glassfish.jersey.media:jersey-media-json-jackson:$jerseyVersion" + implementation "org.glassfish.jersey.inject:jersey-hk2:$jerseyVersion" + implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:$jacksonVersion" + implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr353:$jacksonVersion" + implementation "org.liquibase:liquibase-core:3.6.3" + implementation "com.sun.mail:javax.mail:1.6.2" + implementation "org.jxls:jxls:2.4.7" + implementation "org.jxls:jxls-poi:1.0.16" + implementation "org.apache.velocity:velocity:1.7" + implementation "org.apache.velocity:velocity-tools:2.0" + implementation "org.apache.commons:commons-collections4:4.2" + implementation "org.mnode.ical4j:ical4j:2.0.5" // needs upgrade + implementation "com.fizzed:ch-smpp:6.0.0-netty4-beta-3" + implementation "net.java.dev.jna:jna-platform:5.2.0" + implementation "com.github.jnr:jnr-posix:3.0.49" + implementation "javax.xml.bind:jaxb-api:2.3.1" + implementation "com.sun.xml.bind:jaxb-core:2.3.0.1" + implementation "com.sun.xml.bind:jaxb-impl:2.3.2" + implementation "javax.activation:activation:1.1.1" + testImplementation "junit:junit:4.12" +} + +task copyDependencies(type: Copy) { + into "$projectDir/target/lib" + from configurations.runtimeClasspath +} +task copyBinary(type: Copy) { + into "$projectDir/target" + from jar +} +assemble.dependsOn(copyBinary, copyDependencies) + +jar { + manifest { + attributes( + "Main-Class": "org.traccar.Main", + "Implementation-Version": "4.3", + "Class-Path": configurations.runtimeClasspath.files.collect { "lib/$it.name" }.join(" ")) + } +} |