Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
acdc
repository-extension-services
Commits
ad968447
Commit
ad968447
authored
Sep 08, 2016
by
acoburn
Browse files
update build
parent
6ba437fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
build.gradle
build.gradle
+18
-0
No files found.
build.gradle
View file @
ad968447
...
...
@@ -19,6 +19,8 @@ allprojects {
options
.
compilerArgs
<<
"-Xlint:unchecked"
<<
"-Xlint:deprecation"
}
}
afterReleaseBuild
.
dependsOn
uploadArchives
}
subprojects
{
...
...
@@ -95,6 +97,21 @@ subprojects {
into
'build/cfg/main'
}
task
sourceJar
(
type:
Jar
)
{
classifier
'sources'
from
sourceSets
.
main
.
allSource
}
task
javadocJar
(
type:
Jar
)
{
classifier
'javadoc'
from
javadoc
}
artifacts
{
archives
javadocJar
archives
sourceJar
}
classes
{
classes
.
dependsOn
processConfig
}
...
...
@@ -117,6 +134,7 @@ subprojects {
publications
{
maven
(
MavenPublication
)
{
from
components
.
java
artifact
sourceJar
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment