Skip to content

Commit

Permalink
Fix compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino committed Jan 29, 2023
1 parent eb5c51b commit 3fb9b0b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To build the library sources, please follow these steps:

```
cd java
./gradlew clean publishToMavenLocal
./gradlew clean compileJava publishToMavenLocal
```

## Code Contributions
Expand Down
11 changes: 7 additions & 4 deletions java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,15 @@ repositories {
}

dependencies {
implementation group: 'org.jfrog.buildinfo', name: 'build-info-api', version: '2.26.1'
implementation group: 'org.jfrog.buildinfo', name: 'build-info-extractor', version: '2.26.1'
implementation group: 'org.jfrog.artifactory.client', name: 'artifactory-java-client-services', version: '2.13.1'
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
implementation group: 'junit', name: 'junit', version: '4.13.1'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.10.0'
implementation group: 'junit', name: 'junit', version: '4.13.1'
implementation group: 'org.apache.groovy', name: 'groovy', version: '4.0.8'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.19.0'
implementation group: 'org.jfrog.artifactory.client', name: 'artifactory-java-client-services', version: '2.13.1'
implementation group: 'org.jfrog.buildinfo', name: 'build-info-api', version: '2.26.1'
implementation group: 'org.jfrog.buildinfo', name: 'build-info-extractor', version: '2.26.1'
}

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.commons.text.StringSubstitutor;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.jfrog.artifactory.client.Artifactory;
import org.jfrog.artifactory.client.ArtifactoryClientBuilder;
import org.jfrog.artifactory.client.ArtifactoryRequest;
Expand Down

0 comments on commit 3fb9b0b

Please sign in to comment.