Merge "Read lock promotion"
[music.git] / examples / VotingApp / dependency-reduced-pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>com.att.reserarch.VoteAppForMUSIC</groupId>
5   <artifactId>VoteAppForMUSIC</artifactId>
6   <version>0.0.1-SNAPSHOT</version>
7   <build>
8     <plugins>
9       <plugin>
10         <artifactId>maven-shade-plugin</artifactId>
11         <executions>
12           <execution>
13             <id>default-jar</id>
14             <phase>package</phase>
15             <goals>
16               <goal>shade</goal>
17             </goals>
18             <configuration>
19               <transformers>
20                 <transformer />
21                 <transformer>
22                   <mainClass>main.VotingApp</mainClass>
23                 </transformer>
24               </transformers>
25             </configuration>
26           </execution>
27         </executions>
28       </plugin>
29     </plugins>
30   </build>
31   <repositories>
32     <repository>
33       <id>maven2-repository.java.net</id>
34       <name>Java.net Repository for Maven</name>
35       <url>http://download.java.net/maven/2/</url>
36     </repository>
37   </repositories>
38 </project>