Added pom.
This commit is contained in:
parent
5b88abdb7c
commit
ec778764ae
8 changed files with 41 additions and 16 deletions
2
.idea/copyright/profiles_settings.xml
generated
2
.idea/copyright/profiles_settings.xml
generated
|
@ -1,5 +1,5 @@
|
|||
<component name="CopyrightManager">
|
||||
<settings default="Erik's Copyright Notice">
|
||||
<settings default="">
|
||||
<module2copyright>
|
||||
<element module="Source" copyright="Erik's Copyright Notice" />
|
||||
</module2copyright>
|
||||
|
|
4
.idea/deployment.xml
generated
4
.idea/deployment.xml
generated
|
@ -1,4 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="PublishConfigData" persistUploadOnCheckin="false" />
|
||||
</project>
|
13
.idea/kobalt.xml
generated
Normal file
13
.idea/kobalt.xml
generated
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="KobaltSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<KobaltProjectSettings>
|
||||
<option name="autoDownloadKobalt" value="true" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="kobaltHome" value="$USER_HOME$/.kobalt/wrapper/dist/kobalt-0.847" />
|
||||
<option name="useAutoImport" value="true" />
|
||||
</KobaltProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
4
.idea/misc.xml
generated
4
.idea/misc.xml
generated
|
@ -40,10 +40,6 @@
|
|||
</component>
|
||||
<component name="EntryPointsManager">
|
||||
<entry_points version="2.0" />
|
||||
<list size="2">
|
||||
<item index="0" class="java.lang.String" itemvalue="com.beust.kobalt.api.annotation.Directive" />
|
||||
<item index="1" class="java.lang.String" itemvalue="com.beust.kobalt.api.annotation.Task" />
|
||||
</list>
|
||||
</component>
|
||||
<component name="MavenImportPreferences">
|
||||
<option name="generalSettings">
|
||||
|
|
2
.idea/scopes/Source.xml
generated
2
.idea/scopes/Source.xml
generated
|
@ -1,3 +1,3 @@
|
|||
<component name="DependencyValidationManager">
|
||||
<scope name="Source" pattern="file[kobalt-exec]:src/main/kotlin//*||file[kobalt-exec]:src/test/kotlin//*" />
|
||||
<scope name="Source" pattern="file[kobalt-exec]:src/main/kotlin//**kt" />
|
||||
</component>
|
3
.idea/vcs.xml
generated
3
.idea/vcs.xml
generated
|
@ -2,8 +2,5 @@
|
|||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
|
@ -2,6 +2,10 @@ import com.beust.kobalt.plugin.packaging.assemble
|
|||
import com.beust.kobalt.plugin.publish.bintray
|
||||
import com.beust.kobalt.project
|
||||
import com.beust.kobalt.repos
|
||||
import org.apache.maven.model.Developer
|
||||
import org.apache.maven.model.License
|
||||
import org.apache.maven.model.Model
|
||||
import org.apache.maven.model.Scm
|
||||
|
||||
val repos = repos()
|
||||
|
||||
|
@ -15,6 +19,26 @@ val p = project {
|
|||
artifactId = name
|
||||
version = "0.5.0-beta"
|
||||
|
||||
pom = Model().apply {
|
||||
name = project.name
|
||||
description = "Command line execution plugin for the Kobalt build system"
|
||||
url = "https://github.com/ethauvin/kobalt-exec"
|
||||
licenses = listOf(License().apply {
|
||||
name = "BSD 3-Clause"
|
||||
url = "https://opensource.org/licenses/BSD-3-Clause"
|
||||
})
|
||||
scm = Scm().apply {
|
||||
url = "https://github.com/ethauvin/kobalt-exec"
|
||||
connection = "https://github.com/ethauvin/kobalt-exec.git"
|
||||
developerConnection = "git@github.com:ethauvin/kobalt-exec.git"
|
||||
}
|
||||
developers = listOf(Developer().apply {
|
||||
id = "ethauvin"
|
||||
name = "Erik C. Thauvin"
|
||||
email = "erik@thauvin.net"
|
||||
})
|
||||
}
|
||||
|
||||
sourceDirectories {
|
||||
path("src/main/kotlin")
|
||||
}
|
||||
|
@ -33,8 +57,7 @@ val p = project {
|
|||
}
|
||||
|
||||
assemble {
|
||||
mavenJars {
|
||||
}
|
||||
mavenJars {}
|
||||
}
|
||||
|
||||
bintray {
|
||||
|
|
|
@ -1 +1 @@
|
|||
kobalt.version=0.846
|
||||
kobalt.version=0.847
|
Loading…
Add table
Add a link
Reference in a new issue