Advertisement
DrupalCustom

POM.xml

Jul 13th, 2012
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.50 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.          <dependency>
  54.             <groupId>axis</groupId>
  55.              <artifactId>axis</artifactId>
  56.              <version>1.4</version>
  57.               <exclusions>
  58.                   <exclusion>
  59.                      <groupId>commons-logging</groupId>
  60.                        <artifactId>commons-logging</artifactId>
  61.                     </exclusion>
  62.                      <exclusion>
  63.                        <groupId>commons-discovery</groupId>
  64.                       <artifactId>commons-discovery</artifactId>
  65.                      </exclusion>
  66.                      <exclusion>
  67.                        <groupId>axis</groupId>
  68.                      <artifactId>axis-wsdl4j</artifactId>
  69.                     </exclusion>
  70.                   </exclusions>      
  71.          </dependency>
  72.  
  73.        
  74.         <dependency>
  75.             <groupId>freeway</groupId>
  76.             <artifactId>commons-discovery</artifactId>
  77.             <scope>provided</scope>
  78.             <version>0.2</version>
  79.         </dependency>
  80.        
  81.         <dependency>
  82.             <groupId>freeway</groupId>
  83.             <artifactId>commons-logging</artifactId>
  84.             <scope>provided</scope>
  85.             <version>1.1</version>
  86.         </dependency>
  87.        
  88.         <dependency>
  89.             <groupId>freeway</groupId>
  90.             <artifactId>JarRestGlemser</artifactId>
  91.             <version>1.0</version>
  92.         </dependency>
  93.        
  94.         <dependency>
  95.             <groupId>freeway</groupId>
  96.             <artifactId>jaxrpc</artifactId>
  97.             <scope>provided</scope>
  98.             <version>1.0</version>
  99.         </dependency>
  100.        
  101.         <dependency>
  102.             <groupId>freeway</groupId>
  103.             <artifactId>log4j</artifactId>
  104.             <scope>provided</scope>
  105.             <version>1.0</version>
  106.         </dependency>
  107.        
  108.         <dependency>
  109.             <groupId>freeway</groupId>
  110.             <artifactId>VojoJavaLibrary20112004</artifactId>
  111.             <version>1.0</version>
  112.         </dependency>
  113.        
  114.         <dependency>
  115.             <groupId>freeway</groupId>
  116.             <artifactId>wsdl4j</artifactId>
  117.             <scope>provided</scope>
  118.             <version>1.0</version>
  119.         </dependency>
  120.        
  121.        
  122.        
  123.        
  124.     </dependencies>
  125.  
  126.     <build>
  127.         <plugins>
  128.             <plugin>
  129.                 <groupId>com.atlassian.maven.plugins</groupId>
  130.                 <artifactId>maven-confluence-plugin</artifactId>
  131.                 <version>3.0</version>
  132.                 <extensions>true</extensions>
  133.                 <configuration>
  134.                     <productVersion>${confluence.version}</productVersion>
  135.                     <productDataVersion>${confluence.data.version}</productDataVersion>
  136.                 </configuration>
  137.             </plugin>
  138.             <plugin>
  139.                 <artifactId>maven-compiler-plugin</artifactId>
  140.                 <configuration>
  141.                     <source>1.5</source>
  142.                     <target>1.5</target>
  143.                 </configuration>
  144.             </plugin>
  145.         </plugins>
  146.     </build>
  147.  
  148.     <properties>
  149.         <confluence.version>3.0.1</confluence.version>
  150.         <confluence.data.version>3.0</confluence.data.version>
  151.     </properties>
  152.  
  153. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement