-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from aml-org/release/4.7.0
Publish 4.7.0 - vocabulary 7.0.0 and transform 1.7.0
- Loading branch information
Showing
59 changed files
with
663 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# These are explicitly windows files and should use crlf | ||
*.bat text eol=crlf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,4 +92,6 @@ project/boot/ | |
project/plugins/project/ | ||
.history | ||
.cache | ||
.lib/ | ||
.lib/ | ||
# Ignore Gradle build output directory | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
maven { | ||
url "https://plugins.gradle.org/m2/" | ||
} | ||
maven { | ||
name "mule-ee-releases" | ||
url "https://repository.mulesoft.org/nexus/content/repositories/releases/" | ||
} | ||
maven { url "https://jitpack.io" } | ||
} | ||
dependencies { | ||
classpath "com.mulesoft:gradle-tools:0.2.6" | ||
classpath files('lib/nexus-iq-cli-1.68.0-01.jar') | ||
} | ||
} | ||
|
||
apply plugin: 'com.mulesoft.gradle.nexusIq' | ||
apply plugin: 'application' | ||
apply plugin: 'distribution' | ||
apply plugin: 'java' | ||
|
||
repositories { | ||
mavenCentral() | ||
maven { | ||
url "https://repository-master.mulesoft.org/nexus/content/repositories/snapshots" | ||
} | ||
maven { | ||
url "https://repository-master.mulesoft.org/nexus/content/repositories/releases" | ||
} | ||
maven { url 'https://jitpack.io' } | ||
} | ||
|
||
def name = 'amf-metadata' | ||
|
||
nexusIq.user = "${System.env.NEXUSIQ_USR}" | ||
nexusIq.password = "${System.env.NEXUSIQ_PSW}" | ||
nexusIq.applicationId = "${name}" | ||
|
||
def versions = new Properties() | ||
file("versions.yaml").withInputStream { | ||
stream -> versions.load(stream) | ||
} | ||
|
||
dependencies { | ||
compile "com.github.amlorg:amf-transform_2.12:${versions.'amf.transform'}" | ||
} | ||
|
||
tasks.nexusIq.dependsOn(distZip) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.