Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.56 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.  
  5.     <parent>
  6.         <groupId>-</groupId>
  7.         <artifactId>war-parent-pom</artifactId>
  8.         <version>4.0.2-spp3</version>
  9.     </parent>
  10.  
  11.     <groupId>deploymentTeamTickets</groupId>
  12.     <artifactId>deploymentTeamTickets</artifactId>
  13.     <version>0.0.1-SNAPSHOT</version>
  14.     <description>...</description>
  15.  
  16.     <scm>
  17.       ...
  18.     </scm>
  19.  
  20.     <distributionManagement>
  21.         <site>
  22.             <id>ivar</id>
  23.             <url>dav:http://xxx.server.lan/uri/${project.groupId}/${project.artifactId}</url>
  24.         </site>
  25.     </distributionManagement>
  26.    
  27.     <build>
  28.         <finalName>DeploymentTicketCreator</finalName>
  29.         <plugins>
  30.             <plugin>
  31.                 <groupId>org.apache.maven.plugins</groupId>
  32.                 <artifactId>maven-shade-plugin</artifactId>
  33.                 <version>2.4.2</version>
  34.                 <configuration>
  35.                     <transformers>
  36.                         <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  37.                             <manifestEntries>
  38.                                 <Main-Class>....apps.deploymenttickets.boundary.DeploymentTicketCreator</Main-Class>
  39.                             </manifestEntries>
  40.                         </transformer>
  41.                     </transformers>
  42.                     <createDependencyReducedPom>false</createDependencyReducedPom>
  43.                 </configuration>
  44.                 <executions>
  45.                     <execution>
  46.                         <phase>package</phase>
  47.                         <goals>
  48.                             <goal>shade</goal>
  49.                         </goals>
  50.                     </execution>
  51.                 </executions>
  52.             </plugin>
  53.         </plugins>
  54.     </build>
  55.  
  56.     <dependencies>
  57.         <dependency>
  58.             <groupId>args4j</groupId>
  59.             <artifactId>args4j</artifactId>
  60.             <version>2.33</version>
  61.         </dependency>
  62.  
  63.         <dependency>
  64.             <groupId>org.jboss.spec.javax.ws.rs</groupId>
  65.             <artifactId>jboss-jaxrs-api_1.1_spec</artifactId>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>org.jboss.resteasy</groupId>
  69.             <artifactId>resteasy-jaxrs</artifactId>
  70.             <version>2.3.7.Final</version>
  71.         </dependency>
  72.  
  73.         <dependency>
  74.             <groupId>com.fasterxml.jackson.core</groupId>
  75.             <artifactId>jackson-core</artifactId>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>com.fasterxml.jackson.core</groupId>
  79.             <artifactId>jackson-databind</artifactId>
  80.         </dependency>
  81.         <dependency>
  82.             <groupId>com.fasterxml.jackson.core</groupId>
  83.             <artifactId>jackson-annotations</artifactId>
  84.         </dependency>
  85.  
  86.         <dependency>
  87.             <groupId>org.jdom</groupId>
  88.             <artifactId>jdom</artifactId>
  89.             <version>1.1</version>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>org.slf4j</groupId>
  93.             <artifactId>slf4j-api</artifactId>
  94.             <version>1.7.13</version>
  95.         </dependency>
  96.         <dependency>
  97.             <groupId>ch.qos.logback</groupId>
  98.             <artifactId>logback-classic</artifactId>
  99.             <version>1.1.1</version>
  100.         </dependency>
  101.     </dependencies>
  102. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement