emul/compact/pom.xml
branchemul
changeset 692 d088fc482c65
parent 621 6daa39b17563
     1.1 --- a/emul/compact/pom.xml	Thu Jan 31 16:13:04 2013 +0100
     1.2 +++ b/emul/compact/pom.xml	Wed Feb 06 18:24:53 2013 +0100
     1.3 @@ -10,7 +10,7 @@
     1.4    <groupId>org.apidesign.bck2brwsr</groupId>
     1.5    <artifactId>emul</artifactId>
     1.6    <version>0.3-SNAPSHOT</version>
     1.7 -  <name>Compact API Profile</name>
     1.8 +  <name>Bck2Brwsr API Profile</name>
     1.9    <url>http://maven.apache.org</url>
    1.10    <properties>
    1.11      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.12 @@ -20,6 +20,7 @@
    1.13        <groupId>${project.groupId}</groupId>
    1.14        <artifactId>emul.mini</artifactId>
    1.15        <version>${project.version}</version>
    1.16 +      <scope>provided</scope>
    1.17      </dependency>
    1.18      <dependency>
    1.19        <groupId>${project.groupId}</groupId>
    1.20 @@ -47,6 +48,25 @@
    1.21                   <target>1.7</target>
    1.22                </configuration>
    1.23            </plugin>
    1.24 +         <plugin>
    1.25 +            <artifactId>maven-assembly-plugin</artifactId>
    1.26 +                <version>2.4</version>
    1.27 +                <executions>
    1.28 +                    <execution>
    1.29 +                        <id>rt</id>
    1.30 +                        <phase>package</phase>
    1.31 +                        <goals>
    1.32 +                            <goal>single</goal>
    1.33 +                        </goals>
    1.34 +                        <configuration>
    1.35 +                            <descriptors>
    1.36 +                                <descriptor>src/main/assembly/rt.xml</descriptor>
    1.37 +                            </descriptors>
    1.38 +                            <finalName>bck2brwsr-${project.version}</finalName>
    1.39 +                        </configuration>
    1.40 +                    </execution>
    1.41 +                </executions>                
    1.42 +            </plugin>      
    1.43        </plugins>
    1.44    </build>
    1.45  </project>