mojo/src/main/resources/archetype-resources/pom.xml
branchcanvas
changeset 808 bd8b726902a3
parent 731 e8283f10a127
parent 807 e93506e603ad
child 809 5c61f5e4898e
     1.1 --- a/mojo/src/main/resources/archetype-resources/pom.xml	Thu Feb 14 12:06:16 2013 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,95 +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.xhtml</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 -      </plugins>
    1.72 -  </build>
    1.73 -
    1.74 -  <dependencies>
    1.75 -    <dependency>
    1.76 -      <groupId>org.apidesign.bck2brwsr</groupId>
    1.77 -      <artifactId>emul.mini</artifactId>
    1.78 -      <version>0.3-SNAPSHOT</version>
    1.79 -    </dependency>
    1.80 -    <dependency>
    1.81 -      <groupId>org.apidesign.bck2brwsr</groupId>
    1.82 -      <artifactId>javaquery.api</artifactId>
    1.83 -      <version>0.3-SNAPSHOT</version>
    1.84 -    </dependency>
    1.85 -    <dependency>
    1.86 -      <groupId>org.testng</groupId>
    1.87 -      <artifactId>testng</artifactId>
    1.88 -      <version>6.5.2</version>
    1.89 -      <scope>test</scope>
    1.90 -    </dependency>
    1.91 -    <dependency>
    1.92 -      <groupId>org.apidesign.bck2brwsr</groupId>
    1.93 -      <artifactId>vmtest</artifactId>
    1.94 -      <version>0.3-SNAPSHOT</version>
    1.95 -      <scope>test</scope>
    1.96 -    </dependency>
    1.97 -  </dependencies>
    1.98 -</project>