forked from jeffheaton/encog-java-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
45 lines (43 loc) · 1.14 KB
/
publish.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
apply plugin: 'nexus'
modifyPom {
project {
name 'encog-core'
groupId 'org.encog'
artifactId 'encog-core'
version '3.4.0-SNAPSHOT'
description 'Encog Machine Learning Framework.'
url 'http://www.heatonresearch.com/encog/'
packaging 'jar'
organization {
name 'Heaton Research, Inc.'
url 'http://www.heatonresearch.com'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
scm {
url 'https://github.com/encog/encog-java-core.git'
connection '[email protected]:encog/encog-java-core.git'
developerConnection '[email protected]:encog/encog-java-core.git'
}
developers {
developer {
id 'jeffheatondotcom'
name 'Jeff Heaton'
email '[email protected]'
}
}
}
}
nexus {
attachJavadoc = true
attachSources = true
attachTests = true
sign = false
repositoryUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
snapshotRepositoryUrl = 'https://oss.sonatype.org/content/repositories/snapshots'
}