-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.conf
156 lines (155 loc) · 4.97 KB
/
pom.conf
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{ project {
groupId = "org.apache.maven"
artifactId = "unbound"
version = "1.0.0"
name = "Unbound"
description = "Maven Unbound is a file level translator of Apache Maven POM files to and\n from JSON and HOCON POM formats. It provides both a library to support\n these translations and a command line interface to translate between\n XML, JSON and HOCON formats of POMs. The CLI can be called with\n the mvnu script in this directory. \n ––generate–hocon and \n ––generate–json command line flags are added to\n translate a Maven project from XML to JSON and/or HOCON. Then mvnu can\n be called just like mvn can but the JSON or HOCON POM files will generate\n pom.xml files on the fly which will in turn be built using Maven."
url = "https://hunterpayne.github.io/maven-unbound-site/index.html"
inceptionYear = "2019"
licenses = [
{
name = "Apache License Version 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
]
developers = [
{
id = "hunterpayne"
name = "Hunter Payne"
email = "no-spam"
roles = [ "developer" ]
timezone = "America/Los_Angeles"
}
]
contributors = [
{
name = "Thomas Boyles"
email = "no-spam"
roles = [ "marketing", "testing" ]
timezone = "America/Los_Angeles"
}
]
scm {
connection = "scm:git:https://github.com/hunterpayne/maven-unbound.git"
developerConnection = "scm:git:https://github.com/hunterpayne/maven-unbound.git"
url = "https://github.com/hunterpayne/maven-unbound"
}
issueManagement {
system = "GitHub"
url = "https://github.com/hunterpayne/maven-unbound/issues"
}
properties {
"project.build.sourceEncoding" = "UTF-8"
"version.scala.epoch" = "2.12"
"version.scala.release" = "2.12.8"
"version.java" = "1.8"
"maven.compiler.source" = "${version.java}"
"maven.compiler.target" = "${version.java}"
"version.scalatest" = "3.0.6"
"maven.build.timestamp.format" = ""
versionScalaRelease = "${version.scala.release}"
mainClass = "org.apache.maven.unbound.Cli"
debPackageDependency = "maven"
rpmPackageDependency = "apache-maven"
packageSection = "Development"
launcherName = "mvnu"
findbugsOmissions = "MutableStaticFields,FindNullDeref,MethodReturnCheck,UnreadFields"
}
dependencies +=
{
groupId = "org.scala-lang.modules"
artifactId = "scala-xml_${version.scala.epoch}"
version = "1.2.0"
}
dependencies +=
{
groupId = "org.scala-lang"
artifactId = "scala-reflect"
version = "${version.scala.release}"
}
dependencies +=
{
groupId = "com.iheart"
artifactId = "ficus_${version.scala.epoch}"
version = "1.4.6"
exclusions = [
{
groupId = "org.scala-lang"
artifactId = "scala-library"
}
]
}
dependencies +=
{
groupId = "org.json4s"
artifactId = "json4s-native_${version.scala.epoch}"
version = "3.6.6"
}
dependencies +=
{
groupId = "org.apache.maven"
artifactId = "maven-model"
version = "3.6.1"
}
dependencies +=
{
groupId = "org.apache.maven.shared"
artifactId = "maven-shared-utils"
version = "3.2.1"
}
dependencies +=
{
groupId = "org.scalatest"
artifactId = "scalatest_${version.scala.epoch}"
version = "${version.scalatest}"
scope = "test"
exclusions = [
{
groupId = "org.scala-lang.modules"
artifactId = "scala-xml_${version.scala.epoch}"
}
]
}
build {
plugins +=
{
artifactId = "maven-site-plugin"
version = "3.7.1"
dependencies = [
{
groupId = "org.apache.maven.doxia"
artifactId = "doxia-module-twiki"
version = "1.8"
}
]
}
}
reporting {
plugins +=
{
artifactId = "maven-project-info-reports-plugin"
version = "3.0.0"
reportSets = [
{
reports = [ "summary", "dependencies", "dependency-info", "dependency-convergence", "team", "licenses", "scm", "issue-management" ]
}
]
}
plugins +=
{
artifactId = "maven-dependency-plugin"
version = "3.1.1"
}
}
include file("examples/scalaCompile.conf")
include file("examples/findbugs.conf")
include file("examples/scalastyle.conf")
include file("examples/scalatest.conf")
include file("examples/scoverage.conf")
include file("examples/shade.conf")
include file("examples/cve.conf")
include file("examples/rpm.conf")
include file("examples/deb.conf")
include file("examples/windowsInstaller.conf")
}
}