Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
asm
asm
Commits
be3e73d1
Commit
be3e73d1
authored
Jan 06, 2018
by
Eric Bruneton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the version number for the 6.1-beta release.
parent
3cee35fc
Pipeline
#576
passed with stage
in 5 minutes and 43 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
build.gradle
build.gradle
+9
-3
No files found.
build.gradle
View file @
be3e73d1
...
...
@@ -44,7 +44,7 @@ subprojects {
apply
plugin:
'org.junit.platform.gradle.plugin'
junitPlatform
{
filters
{
engines
{
'junit-jupiter'
}
}
}
group
=
'org.ow2.asm'
version
=
6.1
version
=
'
6.1
-beta'
sourceCompatibility
=
'1.6'
targetCompatibility
=
'1.6'
ext
.
provides
=
[]
// The provided java packages, e.g. ['org.objectweb.asm']
...
...
@@ -319,8 +319,14 @@ configure(subprojects.findAll { it.provides }) {
// project POM and to upload it, with the classes, sources and Javadoc jars.
apply
plugin:
'maven'
uploadArchives
.
repositories
.
mavenDeployer
{
// TODO: replace this with the OW2 Nexus repository.
repository
url:
'file://localhost/tmp/myRepo/'
if
(
rootProject
.
hasProperty
(
'nexusUserName'
))
{
repository
(
url:
'http://repository.ow2.org/nexus/service/local/'
+
'staging/deploy/maven2'
)
{
authentication
(
userName:
nexusUserName
,
password:
nexusPassword
)
}
}
else
{
repository
url:
'file://localhost/tmp/myRepo/'
}
pom
.
project
{
parent
{
artifactId
'ow2'
...
...
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