Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maven-publishの設定を追加 #859

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,32 @@ jar {
}
}

//config of maven-publish plugin for jitpack
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'kGenProg'
from components.java
pom {
name = 'kGenProg'
description = 'A High-performance, High-extensibility and High-portability APR System'
inceptionYear = '2018'
licenses {
license {
name = 'MIT License'
url = 'https://github.com/kusumotolab/kGenProg/blob/master/LICENSE'
}
}
scm {
connection = 'scm:git:git://github.com/kusumotolab/kGenProg.git'
developerConnection = 'scm:git:ssh://[email protected]/kusumotolab/kGenProg.git'
url = 'https://github.com/kusumotolab/kGenProg'
}
}
}
}
}

// Define App's version
version = currentVersion

Expand Down
10 changes: 5 additions & 5 deletions docs/LIBRARIES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
kGenProg uses the following libraries WITHOUT any modifications.

Apache Commons Lang: APACHE Lisence 2.0,
Apache Commons Lang: Apache License 2.0,
https://commons.apache.org/proper/commons-lang/

Apache Commons Codec: APACHE licens, 2.0,
Apache Commons Codec: Apache License 2.0,
https://commons.apache.org/proper/commons-codec/

Apache Maven: Apache License 2.0,
https://maven.apache.org/

args4j: MIT license,
args4j: MIT License,
https://args4j.kohsuke.org/

ASM: 3-Clause BSD License,
Expand Down Expand Up @@ -45,7 +45,7 @@ https://code.google.com/archive/p/java-diff-utils/
LOGBack: dual-licensed under Eclipse Public License 1.0 and the LGPL 2.1,
https://logback.qos.ch/

mockito: MIT license
mockito: MIT License
https://site.mockito.org/

NightConfig: LGPL,
Expand All @@ -54,7 +54,7 @@ https://github.com/TheElectronWill/night-config
ReactiveX RxJava: Apache License 2.0,
https://github.com/ReactiveX/RxJava

SLF4J: MIT license,
SLF4J: MIT License,
https://www.slf4j.org/


Expand Down