ko-archetype/src/main/resources/archetype-resources/pom.xml
branchEnumString
changeset 756 888067154d74
parent 606 4e9ec54a12e0
parent 755 d396bc480560
     1.1 --- a/ko-archetype/src/main/resources/archetype-resources/pom.xml	Wed Mar 12 20:26:58 2014 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,170 +0,0 @@
     1.4 -<?xml version="1.0"?>
     1.5 -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.6 -  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.7 -  <modelVersion>4.0.0</modelVersion>
     1.8 -
     1.9 -  <groupId>\${groupId}</groupId>
    1.10 -  <artifactId>\${artifactId}</artifactId>
    1.11 -  <version>\${version}</version>
    1.12 -  <packaging>jar</packaging>
    1.13 -
    1.14 -  <name>\${artifactId}</name>
    1.15 -
    1.16 -  <repositories>
    1.17 -      <repository>
    1.18 -          <id>java.net</id>
    1.19 -          <name>Java.net</name>
    1.20 -          <url>https://maven.java.net/content/repositories/releases/</url>
    1.21 -          <snapshots>
    1.22 -              <enabled>true</enabled>
    1.23 -          </snapshots>
    1.24 -      </repository>
    1.25 -      <repository>
    1.26 -          <id>netbeans</id>
    1.27 -          <name>NetBeans</name>
    1.28 -          <url>http://bits.netbeans.org/maven2/</url>
    1.29 -      </repository>
    1.30 -  </repositories>
    1.31 -  <pluginRepositories>
    1.32 -      <pluginRepository>
    1.33 -          <id>java.net</id>
    1.34 -          <name>Java.net</name>
    1.35 -          <url>https://maven.java.net/content/repositories/releases/</url>
    1.36 -          <snapshots>
    1.37 -              <enabled>true</enabled>
    1.38 -          </snapshots>
    1.39 -      </pluginRepository>
    1.40 -  </pluginRepositories>
    1.41 -
    1.42 -  <properties>
    1.43 -    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.44 -    <net.java.html.version>${project.version}</net.java.html.version>
    1.45 -    <netbeans.compile.on.save>none</netbeans.compile.on.save>
    1.46 -  </properties>
    1.47 -  <build>
    1.48 -      <plugins>
    1.49 -          <plugin>
    1.50 -              <groupId>org.netbeans.html</groupId>
    1.51 -              <artifactId>html4j-maven-plugin</artifactId>
    1.52 -              <version>${net.java.html.version}</version>
    1.53 -              <executions>
    1.54 -                  <execution>
    1.55 -                      <id>js-classes</id>
    1.56 -                      <goals>
    1.57 -                          <goal>process-js-annotations</goal>
    1.58 -                      </goals>
    1.59 -                  </execution>
    1.60 -              </executions>
    1.61 -          </plugin>          
    1.62 -          <plugin>
    1.63 -              <groupId>org.apache.maven.plugins</groupId>
    1.64 -              <artifactId>maven-compiler-plugin</artifactId>
    1.65 -              <version>2.3.2</version>
    1.66 -              <configuration>
    1.67 -                  <source>1.7</source>
    1.68 -                  <target>1.7</target>
    1.69 -              </configuration>
    1.70 -          </plugin>
    1.71 -          <plugin>
    1.72 -              <groupId>org.apache.maven.plugins</groupId>
    1.73 -              <artifactId>maven-jar-plugin</artifactId>
    1.74 -              <version>2.4</version>
    1.75 -              <configuration>
    1.76 -                  <archive>
    1.77 -                      <manifest>
    1.78 -                          <mainClass>\${package}.Main</mainClass>
    1.79 -                          <addClasspath>true</addClasspath>
    1.80 -                          <classpathPrefix>lib/</classpathPrefix>
    1.81 -                      </manifest>
    1.82 -                  </archive>
    1.83 -              </configuration>
    1.84 -          </plugin>
    1.85 -          <plugin>
    1.86 -              <groupId>org.codehaus.mojo</groupId>
    1.87 -              <artifactId>exec-maven-plugin</artifactId>
    1.88 -              <version>1.2.1</version>
    1.89 -              <configuration>
    1.90 -                  <systemProperties>
    1.91 -                      <systemProperty>
    1.92 -                          <key>browser.rootdir</key>
    1.93 -                          <value>\${basedir}/src/main/webapp/</value>
    1.94 -                      </systemProperty>
    1.95 -                  </systemProperties>
    1.96 -                  <mainClass>\${package}.Main</mainClass>
    1.97 -              </configuration>
    1.98 -          </plugin>      
    1.99 -          <plugin>
   1.100 -              <artifactId>maven-assembly-plugin</artifactId>
   1.101 -              <version>2.4</version>
   1.102 -              <executions>
   1.103 -                  <execution>
   1.104 -                      <id>distro-assembly</id>
   1.105 -                      <phase>package</phase>
   1.106 -                      <goals>
   1.107 -                          <goal>single</goal>
   1.108 -                      </goals>
   1.109 -                      <configuration>
   1.110 -                          <descriptors>
   1.111 -                              <descriptor>src/main/assembly/html.java.net.xml</descriptor>
   1.112 -                          </descriptors>
   1.113 -                      </configuration>
   1.114 -                  </execution>
   1.115 -              </executions>                
   1.116 -          </plugin>      
   1.117 -      </plugins>
   1.118 -  </build>
   1.119 -  <dependencies>
   1.120 -    <dependency>
   1.121 -        <groupId>org.netbeans.html</groupId>
   1.122 -        <artifactId>net.java.html.json</artifactId>
   1.123 -        <version>\${net.java.html.version}</version>
   1.124 -    </dependency>
   1.125 -    <dependency>
   1.126 -        <groupId>org.netbeans.html</groupId>
   1.127 -        <artifactId>net.java.html.boot</artifactId>
   1.128 -        <version>\${net.java.html.version}</version>
   1.129 -    </dependency>
   1.130 -    <dependency>
   1.131 -        <groupId>org.netbeans.html</groupId>
   1.132 -        <artifactId>ko4j</artifactId>
   1.133 -        <version>\${net.java.html.version}</version>
   1.134 -        <scope>runtime</scope>
   1.135 -    </dependency>
   1.136 -    <dependency>
   1.137 -        <groupId>org.netbeans.html</groupId>
   1.138 -        <artifactId>net.java.html.boot.fx</artifactId>
   1.139 -        <version>\${net.java.html.version}</version>
   1.140 -        <scope>runtime</scope>
   1.141 -    </dependency>
   1.142 -    <dependency>
   1.143 -      <groupId>org.testng</groupId>
   1.144 -      <artifactId>testng</artifactId>
   1.145 -      <version>6.7</version>
   1.146 -      <scope>test</scope>
   1.147 -    </dependency>
   1.148 -  </dependencies>
   1.149 -  <profiles>
   1.150 -      <profile>
   1.151 -          <id>jdk18</id>
   1.152 -          <activation>
   1.153 -              <jdk>1.8</jdk>
   1.154 -          </activation>
   1.155 -          <build>
   1.156 -              <plugins>
   1.157 -                  <plugin>
   1.158 -                      <groupId>org.apache.maven.plugins</groupId>
   1.159 -                      <artifactId>maven-compiler-plugin</artifactId>
   1.160 -                      <version>2.3.2</version>
   1.161 -                      <configuration>
   1.162 -                        <source>1.7</source>
   1.163 -                        <target>1.8</target>
   1.164 -                        <compilerArguments>
   1.165 -                            <profile>compact1</profile>
   1.166 -                        </compilerArguments>
   1.167 -                      </configuration>
   1.168 -                  </plugin>
   1.169 -              </plugins>
   1.170 -          </build>
   1.171 -      </profile>
   1.172 -  </profiles>  
   1.173 -</project>