-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
50 lines (44 loc) · 1.54 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
//
//
//
//
pluginManagement {
// We are using this version of gradle-xjc-plugin because 2.0.0 does not
// support all the building modes we use. Pull requests are upstream.
repositories {
// 3rd party releases and SNAPSHOTs
maven {
//url "https://dlmiles.github.io/gradle-xjc-plugin/java8/maven2"
url = "https://maven.pkg.github.com/dlmiles/gradle-xjc-plugin"
content {
// this repository *only* contains artifacts for specific groups
includeGroup "org.unbroken-dome.xjc"
includeGroup "org.unbroken-dome"
includeGroup "io.github.dlmiles.xjc"
includeGroup "io.github.dlmiles"
includeGroup "org.darrylmiles.forked.org.unbroken-dome.xjc"
includeGroup "org.darrylmiles.forked.org.unbroken-dome"
}
credentials {
// github requires any valid credentials even to GET packages
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
// Official releases only
gradlePluginPortal()
}
}
rootProject.name = 'ipxact-schemas'
include 'spirit-1_0'
include 'spirit-1_1'
include 'spirit-1_2'
include 'spirit-1_4'
include 'spirit-1_5'
include 'spirit-1685-2009'
include 'spirit-1685-2009-VE'
include 'ipxact-1685-2014'
include 'spirit-1_4-wsdl-axis1'
include 'spirit-1_5-wsdl-axis1'
include 'spirit-1685-2009-wsdl-axis1'