Skip to content

Commit

Permalink
Merge pull request #4 from sailpoint-oss/file-upload-utility-4.0.0
Browse files Browse the repository at this point in the history
File Upload Utility 4.0.0
  • Loading branch information
neil-mcglennon-sp authored May 1, 2024
2 parents 364b51c + 3c87ce2 commit 3a7553e
Show file tree
Hide file tree
Showing 36 changed files with 2,574 additions and 1,154 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@
hs_err_pid*
replay_pid*
.DS_Store
/.idea
/.gradle
/bin
/build
/out
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 SailPoint
Copyright (c) 2024 SailPoint

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
355 changes: 354 additions & 1 deletion README.md

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@

plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'application'
id 'java'
}

group 'sailpoint.cloud'
version '4.0.0'

repositories {
mavenCentral()
}

ext {
junitVersion = '5.8.2'
}

sourceCompatibility = '1.11'
targetCompatibility = '1.11'

compileJava.options.fork = true
compileJava.options.forkOptions.executable = '/opt/homebrew/Cellar/openjdk@11/11.0.23/bin/javac'

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}

jar {
manifest {
attributes 'Main-Class': 'sailpoint.utils.FileUploadUtility'
}
}

dependencies {
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.apache.commons:commons-collections4:4.5.0-M1'
implementation 'commons-io:commons-io:2.16.1'
implementation 'info.picocli:picocli:4.7.5'
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
testImplementation 'junit:junit:4.13.1'
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
}

test {
useJUnitPlatform()
}

application {
mainClass = 'sailpoint.utils.FileUploadUtility'
}
106 changes: 0 additions & 106 deletions dependency-reduced-pom.xml

This file was deleted.

7 changes: 7 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 3a7553e

Please sign in to comment.