Advertisement
Guest User

Untitled

a guest
Jan 11th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 10.92 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/maven-v4_0_0.xsd">
  6.     <modelVersion>4.0.0</modelVersion>
  7.     <groupId>com.x.jira.plugin</groupId>
  8.     <artifactId>com.x.jira.plugin-y</artifactId>
  9.     <version>1.0.0</version>
  10.     <organization>
  11.         <name>x</name>
  12.         <url>https://www.x.co/</url>
  13.     </organization>
  14.     <name>com.x.jira.plugin-y</name>
  15.     <description>This is the com.x.jira.plugin:com.x.jira.plugin-y plugin
  16.         for Atlassian JIRA.</description>
  17.     <packaging>atlassian-plugin</packaging>
  18.     <repositories>
  19.         <repository>
  20.             <id>ora</id>
  21.             <url>https://maven.oracle.com</url>
  22.         </repository>
  23.     </repositories>
  24.     <dependencies>
  25.         <dependency>
  26.             <groupId>com.atlassian.jira</groupId>
  27.             <artifactId>jira-api</artifactId>
  28.             <version>${jira.version}</version>
  29.             <scope>provided</scope>
  30.         </dependency>
  31.          <dependency>
  32.             <groupId>com.oracle</groupId>
  33.             <artifactId>ojdbc6</artifactId>
  34.             <version>12.1.0.1-atlassian-hosted</version>
  35.         </dependency>
  36.                  <dependency>
  37.             <groupId>com.oracle.ons</groupId>
  38.             <artifactId>com.springsource.oracle.ons</artifactId>
  39.             <version>10.2.0.2</version>
  40.         </dependency>
  41.                  <dependency>
  42.             <groupId>com.oracle</groupId>
  43.             <artifactId>oraclepki</artifactId>
  44.             <version>1.0</version>
  45.         </dependency>
  46.                  <dependency>
  47.             <groupId>com.oracle</groupId>
  48.             <artifactId>orai18n</artifactId>
  49.             <version>11.2.0.3</version>
  50.         </dependency>
  51.         <dependency>
  52.     <groupId>postgresql</groupId>
  53.     <artifactId>postgresql</artifactId>
  54.     <version>9.1-901-1.jdbc4</version>
  55. </dependency>
  56.         <dependency>
  57.     <groupId>mysql</groupId>
  58.     <artifactId>mysql-connector-java</artifactId>
  59.     <version>5.1.47</version>
  60. </dependency>
  61.         <dependency>
  62.     <groupId>com.microsoft.sqlserver</groupId>
  63.     <artifactId>mssql-jdbc</artifactId>
  64.     <version>7.0.0.jre8</version>
  65. </dependency>
  66.         <dependency>
  67.     <groupId>com.microsoft.aad</groupId>
  68.     <artifactId>adal4j</artifactId>
  69.     <version>0.0.2</version>
  70. </dependency>
  71.  
  72.         <dependency>
  73.     <groupId>c3p0</groupId>
  74.     <artifactId>c3p0</artifactId>
  75.     <version>0.9.1.2</version>
  76. </dependency>
  77.  
  78.         <dependency>
  79.     <groupId>com.sun.jna</groupId>
  80.     <artifactId>jna</artifactId>
  81.     <version>3.0.9</version>
  82. </dependency>
  83.         <dependency>
  84.     <groupId>net.java.dev.jna</groupId>
  85.     <artifactId>jna-platform</artifactId>
  86.     <version>5.2.0</version>
  87. </dependency>
  88.         <dependency>
  89.     <groupId>org.jy.jyas</groupId>
  90.     <artifactId>jy-as-connector</artifactId>
  91.     <version>6.1.0.Final</version>
  92.             <exclusions>
  93.                 <exclusion><groupId>xml-apis</groupId>
  94.                 <artifactId>xml-apis</artifactId></exclusion>
  95.             </exclusions>
  96. </dependency>
  97.  
  98.         <dependency>
  99.             <groupId>org.projectlombok</groupId>
  100.             <artifactId>lombok</artifactId>
  101.             <version>1.16.20</version>
  102.             <scope>provided</scope>
  103.         </dependency>
  104.         <dependency>
  105.             <groupId>com.atlassian.jira</groupId>
  106.             <artifactId>jira-core</artifactId>
  107.             <version>${jira.version}</version>
  108.             <scope>provided</scope>
  109.              <exclusions>
  110.  <exclusion>
  111.  <groupId>xml-apis</groupId>
  112.  <artifactId>xml-apis</artifactId>
  113.  </exclusion>
  114.  </exclusions>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>junit</groupId>
  118.             <artifactId>junit</artifactId>
  119.             <version>4.10</version>
  120.             <scope>test</scope>
  121.         </dependency>
  122.         <dependency>
  123.             <groupId>com.atlassian.plugin</groupId>
  124.             <artifactId>atlassian-spring-scanner-annotation</artifactId>
  125.             <version>${atlassian.spring.scanner.version}</version>
  126.             <scope>compile</scope>
  127.         </dependency>
  128.         <dependency>
  129.             <groupId>com.atlassian.plugin</groupId>
  130.             <artifactId>atlassian-spring-scanner-runtime</artifactId>
  131.             <version>${atlassian.spring.scanner.version}</version>
  132.             <scope>runtime</scope>
  133.         </dependency>
  134.         <dependency>
  135.             <groupId>javax.inject</groupId>
  136.             <artifactId>javax.inject</artifactId>
  137.             <version>1</version>
  138.             <scope>provided</scope>
  139.         </dependency>
  140.         <dependency>
  141.             <groupId>com.atlassian.plugins</groupId>
  142.             <artifactId>atlassian-plugins-osgi-testrunner</artifactId>
  143.             <version>${plugin.testrunner.version}</version>
  144.             <scope>test</scope>
  145.         </dependency>
  146.         <dependency>
  147.             <groupId>javax.ws.rs</groupId>
  148.             <artifactId>jsr311-api</artifactId>
  149.             <version>1.1.1</version>
  150.             <scope>provided</scope>
  151.         </dependency>
  152.         <dependency>
  153.             <groupId>com.google.code.gson</groupId>
  154.             <artifactId>gson</artifactId>
  155.             <version>2.2.2-atlassian-1</version>
  156.         </dependency>
  157.         <dependency>
  158.             <groupId>javax.servlet</groupId>
  159.             <artifactId>servlet-api</artifactId>
  160.             <version>2.4</version>
  161.             <scope>provided</scope>
  162.         </dependency>
  163.         <dependency>
  164.             <groupId>javax.xml.bind</groupId>
  165.             <artifactId>jaxb-api</artifactId>
  166.             <version>2.1</version>
  167.             <scope>provided</scope>
  168.         </dependency>
  169.         <dependency>
  170.             <groupId>com.atlassian.plugins.rest</groupId>
  171.             <artifactId>atlassian-rest-common</artifactId>
  172.             <version>1.0.2</version>
  173.             <scope>provided</scope>
  174.         </dependency>
  175.         <dependency>
  176.             <groupId>com.atlassian.sal</groupId>
  177.             <artifactId>sal-api</artifactId>
  178.             <version>2.6.0</version>
  179.             <scope>provided</scope>
  180.         </dependency>
  181.         <dependency>
  182.             <groupId>org.apache.wink</groupId>
  183.             <artifactId>wink-client</artifactId>
  184.             <version>1.1.3-incubating</version>
  185.             <scope>test</scope>
  186.         </dependency>
  187.         <dependency>
  188.             <groupId>org.mockito</groupId>
  189.             <artifactId>mockito-all</artifactId>
  190.             <version>1.8.5</version>
  191.             <scope>test</scope>
  192.         </dependency>
  193.     </dependencies>
  194.  
  195.     <dependencyManagement>
  196.         <dependencies>
  197.             <dependency>
  198. <groupId>org.jy.jyas</groupId>
  199. <artifactId>jy-as-connector</artifactId><version>6.1.0.Final</version>
  200.                 <exclusions>
  201.                     <exclusion>
  202.                         <groupId>xml-apis</groupId>
  203.                         <artifactId>xml-apis</artifactId></exclusion>
  204.                 </exclusions>
  205. </dependency>
  206.                 <dependency>
  207.             <groupId>com.atlassian.jira</groupId>
  208.             <artifactId>jira-core</artifactId>
  209.             <version>${jira.version}</version>
  210.             <scope>provided</scope>
  211.              <exclusions>
  212.  <exclusion>
  213.  <groupId>xml-apis</groupId>
  214.  <artifactId>xml-apis</artifactId>
  215.  </exclusion>
  216.  </exclusions>
  217.         </dependency>
  218.         </dependencies>
  219.     </dependencyManagement>
  220.  
  221.     <pluginRepositories>
  222.         <pluginRepository>
  223.     <id>atlassian</id>
  224.     <url>https://maven.atlassian.com/repository/public</url>
  225.      <releases>
  226.         <enabled>true</enabled>
  227.         <checksumPolicy>warn</checksumPolicy>
  228.       </releases>
  229.       <snapshots>
  230.          <enabled>true</enabled>
  231.       </snapshots>
  232.  </pluginRepository>
  233.     </pluginRepositories>
  234.     <build>
  235.         <plugins>
  236.             <plugin>
  237.                 <groupId>com.atlassian.maven.plugins</groupId>
  238.                 <artifactId>maven-jira-plugin</artifactId>
  239.                 <version>${amps.version}</version>
  240.                 <extensions>true</extensions>
  241.                 <configuration>
  242.                     <compressResources>false</compressResources>
  243.                     <productVersion>${jira.version}</productVersion>
  244.                     <productDataVersion>${jira.version}</productDataVersion>
  245.                     <enableQuickReload>true</enableQuickReload>
  246.                     <enableFastdev>false</enableFastdev>
  247.                     <instructions>
  248.                         <Atlassian-Plugin-Key>${atlassian.plugin.key}</Atlassian-Plugin-Key>
  249.                         <Export-Package>com.x.jira.plugin.y.api,</Export-Package>
  250.                         <Import-Package>org.springframework.osgi.*;resolution:="optional", org.eclipse.gemini.blueprint.*;resolution:="optional", *</Import-Package>
  251.                         <Spring-Context>*</Spring-Context>
  252.                     </instructions>
  253. <excludes>
  254. <exclude>**/CertificateTest.class</exclude>
  255.     <exclude>**/GetoptDemo.class</exclude>
  256.     <exclude>**/KeyStoreTest.class</exclude>
  257.     <exclude>CertificateTest.class</exclude>
  258.     <exclude>GetoptDemo.class</exclude>
  259.     <exclude>KeyStoreTest.class</exclude>
  260. </excludes>
  261.                 </configuration>
  262.             </plugin>
  263.             <plugin>
  264.                 <groupId>com.atlassian.plugin</groupId>
  265.                 <artifactId>atlassian-spring-scanner-maven-plugin</artifactId>
  266.                 <version>${atlassian.spring.scanner.version}</version>
  267.                 <executions>
  268.                     <execution>
  269.                         <goals>
  270.                             <goal>atlassian-spring-scanner</goal>
  271.                         </goals>
  272.                         <phase>process-classes</phase>
  273.                     </execution>
  274.                 </executions>
  275.                 <configuration>
  276.                     <scannedDependencies>
  277.                         <dependency>
  278.                             <groupId>com.atlassian.plugin</groupId>
  279.                             <artifactId>atlassian-spring-scanner-external-jar</artifactId>
  280.                         </dependency>
  281.                     </scannedDependencies>
  282.                     <verbose>false</verbose>
  283.                 </configuration>
  284.             </plugin>
  285.         </plugins>
  286.     </build>
  287.     <properties>
  288.         <jira.version>7.12.0</jira.version>
  289.         <amps.version>8.0.0-edfff1b</amps.version>
  290.         <plugin.testrunner.version>1.2.3</plugin.testrunner.version>
  291.         <atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>
  292.         <atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
  293.         <testkit.version>6.3.11</testkit.version>
  294.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  295.         <maven.compiler.source>1.8</maven.compiler.source>
  296.         <maven.compiler.target>1.8</maven.compiler.target>
  297.     </properties>
  298. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement