Added pom.xml generation.

This commit is contained in:
Erik C. Thauvin 2017-04-25 09:11:06 -07:00
parent f5ab25b10e
commit 53cff85983
8 changed files with 173 additions and 48 deletions

View file

@ -6,8 +6,8 @@ import net.thauvin.erik.kobalt.plugin.versioneye.*
// ./kobaltw versionEye
val bs = buildScript {
//plugins(file("../kobaltBuild/libs/kobalt-versioneye-0.4.5.jar"))
plugins("net.thauvin.erik:kobalt-versioneye:")
repos(file("K:/maven/repository"))
plugins("net.thauvin.erik:kobalt-versioneye:0.4.5")
}
val p = project {
@ -44,8 +44,10 @@ val p = project {
// colors = true
// name = ""
// org = ""
pom = true
// quiet = false
// team = ""
temp = true
// verbose = true
// visibility = "public"

43
example/pom.xml Normal file
View file

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>example</artifactId>
<version>0.1</version>
<name>example</name>
<description></description>
<dependencies>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.47</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>0.5</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>kobalt-plugin-api</artifactId>
<version>0.878</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>(0,]</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>