Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
arase committed May 17, 2021
1 parent 139ef3f commit ddbf825
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

apply plugin: 'java'
apply plugin: 'eclipse'

sourceCompatibility = 1.6

Expand All @@ -16,19 +15,21 @@ task all {
dependsOn 'jar'
}

/*
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}
*/

repositories {
mavenCentral()
}

dependencies {
compile 'javax.servlet:javax.servlet-api:3.0.1'
testCompile 'junit:junit:4.12'
implementation 'javax.servlet:javax.servlet-api:3.0.1'
testImplementation 'junit:junit:4.12'
}

0 comments on commit ddbf825

Please sign in to comment.