Index: build.gradle =================================================================== diff -u -r197dce26fb97b9f9a2dd67d2b5c1c7dc788fdb43 -rc1d6da286eff4c54e31252a4f8a9dd606ee3d1e6 --- build.gradle (.../build.gradle) (revision 197dce26fb97b9f9a2dd67d2b5c1c7dc788fdb43) +++ build.gradle (.../build.gradle) (revision c1d6da286eff4c54e31252a4f8a9dd606ee3d1e6) @@ -1,62 +1,52 @@ /* * This file was generated by the Gradle 'init' task. */ - -plugins { - id 'java' - id 'maven-publish' +buildscript { + repositories { + mavenLocal() + maven { url 'https://workhorse.lemanscorp.com/nexus/repository/public/' } + } } repositories { mavenLocal() - maven { - url = uri('http://workhorse:8081/nexus/content/repositories/snapshots/') - } + maven { url 'https://workhorse.lemanscorp.com/nexus/repository/public/' } +} - maven { - url = uri('https://workhorse.lemanscorp.com/nexus/content/repositories/releases/') - } +//lemans +configurations { + compile.exclude module: 'common-logging' + compile.exclude module: 'commons-lang' - maven { - url = uri('https://repo.maven.apache.org/maven2/') - } } dependencies { - implementation 'commons-logging:commons-logging:1.2' - implementation 'commons-lang:commons-lang:2.1' - implementation 'org.apache.tomcat:tomcat-servlet-api:8.0.28' - implementation 'org.apache.tomcat:tomcat-jsp-api:8.0.28' - implementation 'org.springframework:spring-ldap:1.1.1' - implementation 'org.springframework:spring-dao:1.2.6' - implementation 'org.springframework:spring-beans:1.2.6' - implementation 'org.springframework:spring-jdbc:1.2.6' - implementation 'org.springframework:spring-context:1.2.6' - implementation 'org.springframework:spring-core:1.2.6' - implementation 'org.springframework:spring-aop:1.2.6' - testImplementation 'junit:junit:3.8.1' - testImplementation 'commons-collections:commons-collections:3.1' - testImplementation 'log4j:log4j:1.2.9' - testImplementation 'oro:oro:2.0.8' - testImplementation 'aopalliance:aopalliance:1.0' - testImplementation 'ehcache:ehcache:1.1' - testImplementation 'quartz:quartz:1.5.1' - testImplementation 'com.sun:ldapbp:1.0' - testImplementation 'sqljdbc:sqljdbc:4.0' - testImplementation 'com.servlets:cos:05Nov2002' - testImplementation 'javax.transaction:jta:1.0.1B' - testImplementation 'javax.resource:connector:1.0' + compile 'commons-logging:commons-logging:1.2' + compile 'commons-lang:commons-lang:2.1' + compile 'org.apache.tomcat:tomcat-servlet-api:8.0.28' + compile 'org.apache.tomcat:tomcat-jsp-api:8.0.28' + compile 'org.springframework:spring-ldap:1.1.1' + compile 'org.springframework:spring-dao:1.2.6' + compile 'org.springframework:spring-beans:1.2.6' + compile 'org.springframework:spring-jdbc:1.2.6' + compile 'org.springframework:spring-context:1.2.6' + compile 'org.springframework:spring-core:1.2.6' + compile 'org.springframework:spring-aop:1.2.6' + compile 'junit:junit:3.8.1' + compile 'commons-collections:commons-collections:3.1' + compile 'log4j:log4j:1.2.9' + compile 'oro:oro:2.0.8' + compile 'aopalliance:aopalliance:1.0' + compile 'ehcache:ehcache:1.1' + compile 'quartz:quartz:1.5.1' + compile 'com.sun:ldapbp:1.0' + compile 'sqljdbc:sqljdbc:4.0' + compile 'com.servlets:cos:05Nov2002' + compile 'javax.transaction:jta:1.0.1B' + compile 'javax.resource:connector:1.0' } group = 'com.lemans' version = '1.0' description = 'LeMans User Common' -java.sourceCompatibility = JavaVersion.VERSION_1_8 -publishing { - publications { - maven(MavenPublication) { - from(components.java) - } - } -}