DrupalCustom

PomXML

Jul 12th, 2012
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0"
  4.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  6.  
  7.     <modelVersion>4.0.0</modelVersion>
  8.     <groupId>com.atlassian.lionbridge</groupId>
  9.     <artifactId>testlionbridge</artifactId>
  10.     <version>1.0-SNAPSHOT</version>
  11.  
  12.     <organization>
  13.         <name>Example Company</name>
  14.         <url>http://www.example.com/</url>
  15.     </organization>
  16.  
  17.     <name>testlionbridge</name>
  18.     <description>This is the com.atlassian.lionbridge:testlionbridge plugin for Atlassian Confluence.</description>
  19.     <packaging>atlassian-plugin</packaging>
  20.  
  21.     <dependencies>
  22.         <dependency>
  23.             <groupId>junit</groupId>
  24.             <artifactId>junit</artifactId>
  25.             <version>4.6</version>
  26.             <scope>test</scope>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>com.atlassian.confluence</groupId>
  30.             <artifactId>confluence</artifactId>
  31.             <version>${confluence.version}</version>
  32.             <scope>provided</scope>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>com.atlassian.confluence.plugin</groupId>
  36.             <artifactId>func-test</artifactId>
  37.             <version>2.1.1</version>
  38.             <scope>test</scope>
  39.         </dependency>
  40.         <dependency>  
  41.             <groupId>javax.servlet</groupId>  
  42.             <artifactId>servlet-api</artifactId>
  43.             <version>2.4</version>
  44.             <scope>provided</scope>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>com.atlassian.sal</groupId>
  48.             <artifactId>sal-api</artifactId>  
  49.             <version>2.0.16</version>  
  50.             <scope>provided</scope>
  51.         </dependency>
  52.  
  53.        
  54.         <dependency>
  55.             <groupId>freeway</groupId>
  56.             <artifactId>commons-discovery</artifactId>
  57.             <version>0.2</version>
  58.         </dependency>
  59.        
  60.         <dependency>
  61.             <groupId>freeway</groupId>
  62.             <artifactId>commons-logging</artifactId>
  63.             <version>1.1</version>
  64.         </dependency>
  65.        
  66.         <dependency>
  67.             <groupId>freeway</groupId>
  68.             <artifactId>JarRestGlemser</artifactId>
  69.             <version>1.0</version>
  70.         </dependency>
  71.        
  72.         <dependency>
  73.             <groupId>freeway</groupId>
  74.             <artifactId>jaxrpc</artifactId>
  75.             <version>1.0</version>
  76.         </dependency>
  77.        
  78.         <dependency>
  79.             <groupId>freeway</groupId>
  80.             <artifactId>log4j</artifactId>
  81.             <version>1.0</version>
  82.         </dependency>
  83.        
  84.         <dependency>
  85.             <groupId>freeway</groupId>
  86.             <artifactId>VojoJavaLibrary20112004</artifactId>
  87.             <version>1.0</version>
  88.         </dependency>
  89.        
  90.         <dependency>
  91.             <groupId>freeway</groupId>
  92.             <artifactId>wsdl4j</artifactId>
  93.             <version>1.0</version>
  94.         </dependency>
  95.        
  96.        
  97.        
  98.        
  99.     </dependencies>
  100.  
  101.     <build>
  102.         <plugins>
  103.             <plugin>
  104.                 <groupId>com.atlassian.maven.plugins</groupId>
  105.                 <artifactId>maven-confluence-plugin</artifactId>
  106.                 <version>3.0</version>
  107.                 <extensions>true</extensions>
  108.                 <configuration>
  109.                     <productVersion>${confluence.version}</productVersion>
  110.                     <productDataVersion>${confluence.data.version}</productDataVersion>
  111.                 </configuration>
  112.             </plugin>
  113.             <plugin>
  114.                 <artifactId>maven-compiler-plugin</artifactId>
  115.                 <configuration>
  116.                     <source>1.5</source>
  117.                     <target>1.5</target>
  118.                 </configuration>
  119.             </plugin>
  120.         </plugins>
  121.     </build>
  122.  
  123.     <properties>
  124.         <confluence.version>3.0.1</confluence.version>
  125.         <confluence.data.version>3.0</confluence.data.version>
  126.     </properties>
  127.  
  128. </project>
Advertisement
Add Comment
Please, Sign In to add comment