mojo/src/main/resources/archetype-resources/pom.xml
changeset 772 d382dacfd73f
parent 771 4252bfc396fc
child 773 406faa8bc64f
     1.1 --- a/mojo/src/main/resources/archetype-resources/pom.xml	Tue Feb 26 14:55:55 2013 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,135 +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/snapshots/</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>Local Maven repository of releases</name>
    1.35 -          <url>https://maven.java.net/content/repositories/snapshots/</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 -  </properties>
    1.45 -  <build>
    1.46 -      <plugins>
    1.47 -            <plugin>
    1.48 -                <groupId>org.apidesign.bck2brwsr</groupId>
    1.49 -                <artifactId>mojo</artifactId>
    1.50 -                <version>0.3-SNAPSHOT</version>
    1.51 -                <executions>
    1.52 -                    <execution>
    1.53 -                        <goals>
    1.54 -                            <goal>brwsr</goal>
    1.55 -                        </goals>
    1.56 -                    </execution>
    1.57 -                </executions>
    1.58 -                <configuration>
    1.59 -                    <startpage>${package.replace('.','/')}/index.html</startpage>
    1.60 -                </configuration>
    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 -                         <addClasspath>true</addClasspath>
    1.79 -                         <classpathPrefix>lib/</classpathPrefix>
    1.80 -                     </manifest>
    1.81 -                 </archive>
    1.82 -             </configuration>
    1.83 -         </plugin>
    1.84 -         <plugin>
    1.85 -             <artifactId>maven-assembly-plugin</artifactId>
    1.86 -             <version>2.4</version>
    1.87 -             <executions>
    1.88 -                 <execution>
    1.89 -                     <id>distro-assembly</id>
    1.90 -                     <phase>package</phase>
    1.91 -                     <goals>
    1.92 -                         <goal>single</goal>
    1.93 -                     </goals>
    1.94 -                     <configuration>
    1.95 -                         <descriptors>
    1.96 -                             <descriptor>bck2brwsr-assembly.xml</descriptor>
    1.97 -                         </descriptors>
    1.98 -                     </configuration>
    1.99 -                 </execution>
   1.100 -             </executions>                
   1.101 -         </plugin>      
   1.102 -      </plugins>
   1.103 -  </build>
   1.104 -
   1.105 -  <dependencies>
   1.106 -    <dependency>
   1.107 -      <groupId>org.apidesign.bck2brwsr</groupId>
   1.108 -      <artifactId>emul</artifactId>
   1.109 -      <version>0.3-SNAPSHOT</version>
   1.110 -      <classifier>rt</classifier>
   1.111 -    </dependency>
   1.112 -    <dependency>
   1.113 -      <groupId>org.apidesign.bck2brwsr</groupId>
   1.114 -      <artifactId>javaquery.api</artifactId>
   1.115 -      <version>0.3-SNAPSHOT</version>
   1.116 -    </dependency>
   1.117 -    <dependency>
   1.118 -      <groupId>org.testng</groupId>
   1.119 -      <artifactId>testng</artifactId>
   1.120 -      <version>6.5.2</version>
   1.121 -      <scope>test</scope>
   1.122 -    </dependency>
   1.123 -    <dependency>
   1.124 -      <groupId>org.apidesign.bck2brwsr</groupId>
   1.125 -      <artifactId>vm4brwsr</artifactId>
   1.126 -      <classifier>js</classifier>
   1.127 -      <type>zip</type>
   1.128 -      <version>0.3-SNAPSHOT</version>
   1.129 -      <scope>provided</scope>
   1.130 -    </dependency>
   1.131 -    <dependency>
   1.132 -      <groupId>org.apidesign.bck2brwsr</groupId>
   1.133 -      <artifactId>vmtest</artifactId>
   1.134 -      <version>0.3-SNAPSHOT</version>
   1.135 -      <scope>test</scope>
   1.136 -    </dependency>
   1.137 -  </dependencies>
   1.138 -</project>