bekanaveriani

Untitled

Sep 25th, 2023
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.76 KB | None | 0 0
  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"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <parent>
  7.         <groupId>org.springframework.boot</groupId>
  8.         <artifactId>spring-boot-starter-parent</artifactId>
  9.         <version>2.7.15</version>
  10.         <relativePath/> <!-- lookup parent from repository -->
  11.     </parent>
  12.  
  13.     <groupId>com.xxx.search</groupId>
  14.     <artifactId>search-solr-indexing-lib</artifactId>
  15.     <version>0.0.1-SNAPSHOT</version>
  16.     <name>search-solr-indexing-lib</name>
  17.     <description>Solr indexing helper</description>
  18.  
  19.     <properties>
  20.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22.         <java.version>11</java.version>
  23.         <maven.compiler.release>11</maven.compiler.release>
  24.         <additionalparam>-Xdoclint:none</additionalparam>
  25.     </properties>
  26.  
  27.  
  28.     <scm>
  29.         <connection>scm:git:https://buildportal:[email protected]/scm/scoe/search-solr-indexing-lib.git
  30.         </connection>
  31.         <developerConnection>
  32.             scm:git:https://buildportal:[email protected]/scm/scoe/search-solr-indexing-lib.git
  33.         </developerConnection>
  34.         <url>scm:git:https://buildportal:[email protected]/scm/scoe/search-solr-indexing-lib.git</url>
  35.         <tag>HEAD</tag>
  36.     </scm>
  37.  
  38.     <dependencyManagement>
  39.         <dependencies>
  40.             <dependency>
  41.                 <groupId>software.amazon.awssdk</groupId>
  42.                 <artifactId>bom</artifactId>
  43.                 <version>2.15.0</version>
  44.                 <type>pom</type>
  45.                 <scope>import</scope>
  46.             </dependency>
  47.         </dependencies>
  48.     </dependencyManagement>
  49.  
  50.     <dependencies>
  51.         <dependency>
  52.             <groupId>org.springframework.boot</groupId>
  53.             <artifactId>spring-boot-starter</artifactId>
  54.         </dependency>
  55.  
  56.         <dependency>
  57.             <groupId>org.springframework.boot</groupId>
  58.             <artifactId>spring-boot-starter-data-redis</artifactId>
  59.         </dependency>
  60.  
  61.         <dependency>
  62.             <groupId>org.springframework.boot</groupId>
  63.             <artifactId>spring-boot-starter-test</artifactId>
  64.             <scope>test</scope>
  65.         </dependency>
  66.  
  67.         <dependency>
  68.             <groupId>com.google.code.gson</groupId>
  69.             <artifactId>gson</artifactId>
  70.             <version>2.10.1</version>
  71.         </dependency>
  72.         <dependency>
  73.             <groupId>io.github.resilience4j</groupId>
  74.             <artifactId>resilience4j-retry</artifactId>
  75.             <version>1.7.1</version>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>org.apache.solr</groupId>
  79.             <artifactId>solr-solrj</artifactId>
  80.             <version>9.3.0</version>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>software.amazon.awssdk</groupId>
  84.             <artifactId>s3</artifactId>
  85.         </dependency>
  86.         <dependency>
  87.             <groupId>software.amazon.awssdk</groupId>
  88.             <artifactId>auth</artifactId>
  89.         </dependency>
  90.         <dependency>
  91.             <groupId>org.apache.commons</groupId>
  92.             <artifactId>commons-collections4</artifactId>
  93.             <version>4.4</version>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>redis.clients</groupId>
  97.             <artifactId>jedis</artifactId>
  98.             <version>3.9.0</version>
  99.         </dependency>
  100.         <!-- https://mvnrepository.com/artifact/com.joyent.util/fast-md5 -->
  101.         <dependency>
  102.             <groupId>com.joyent.util</groupId>
  103.             <artifactId>fast-md5</artifactId>
  104.             <version>2.7.1</version>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>com.fasterxml.jackson.datatype</groupId>
  108.             <artifactId>jackson-datatype-jsr310</artifactId>
  109.             <version>2.15.2</version>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>com.fasterxml.jackson.dataformat</groupId>
  113.             <artifactId>jackson-dataformat-xml</artifactId>
  114.             <version>2.15.2</version>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>com.fasterxml.jackson.core</groupId>
  118.             <artifactId>jackson-core</artifactId>
  119.             <version>2.15.2</version>
  120.         </dependency>
  121.  
  122.  
  123.         <dependency>
  124.             <groupId>org.apache.commons</groupId>
  125.             <artifactId>commons-lang3</artifactId>
  126.             <version>3.13.0</version>
  127.         </dependency>
  128.         <dependency>
  129.             <groupId>commons-io</groupId>
  130.             <artifactId>commons-io</artifactId>
  131.             <version>2.13.0</version>
  132.         </dependency>
  133.         <dependency>
  134.             <groupId>com.google.api-client</groupId>
  135.             <artifactId>google-api-client</artifactId>
  136.             <version>2.0.0</version>
  137.         </dependency>
  138.         <dependency>
  139.             <groupId>com.google.oauth-client</groupId>
  140.             <artifactId>google-oauth-client-jetty</artifactId>
  141.             <version>1.34.1</version>
  142.         </dependency>
  143.         <dependency>
  144.             <groupId>com.google.apis</groupId>
  145.             <artifactId>google-api-services-sheets</artifactId>
  146.             <version>v4-rev20220927-2.0.0</version>
  147.         </dependency>
  148.         <dependency>
  149.             <groupId>com.google.auth</groupId>
  150.             <artifactId>google-auth-library-oauth2-http</artifactId>
  151.             <version>1.19.0</version>
  152.         </dependency>
  153.  
  154.         <dependency>
  155.             <groupId>com.oracle.database.jdbc</groupId>
  156.             <artifactId>ojdbc10</artifactId>
  157.             <version>19.20.0.0</version>
  158.         </dependency>
  159.         <dependency>
  160.             <groupId>org.postgresql</groupId>
  161.             <artifactId>postgresql</artifactId>
  162.             <version>42.6.0</version>
  163.         </dependency>
  164.  
  165.  
  166.         <dependency>
  167.             <groupId>org.testcontainers</groupId>
  168.             <artifactId>postgresql</artifactId>
  169.             <version>1.18.0</version>
  170.             <scope>test</scope>
  171.         </dependency>
  172.         <dependency>
  173.             <groupId>org.testcontainers</groupId>
  174.             <artifactId>oracle-xe</artifactId>
  175.             <version>1.19.0</version>
  176.             <scope>test</scope>
  177.         </dependency>
  178.     </dependencies>
  179.  
  180.  
  181.     <build>
  182.         <plugins>
  183.             <plugin>
  184.                 <groupId>org.apache.maven.plugins</groupId>
  185.                 <artifactId>maven-jar-plugin</artifactId>
  186.                 <executions>
  187.                     <execution>
  188.                         <goals>
  189.                             <goal>test-jar</goal>
  190.                         </goals>
  191.                     </execution>
  192.                 </executions>
  193.             </plugin>
  194.  
  195.             <plugin>
  196.                 <artifactId>maven-release-plugin</artifactId>
  197.                 <configuration>
  198.                     <releaseProfiles>skipTestsForReleasePerform</releaseProfiles>
  199.                 </configuration>
  200.             </plugin>
  201.  
  202.  
  203.         </plugins>
  204.  
  205.     </build>
  206.  
  207.     <profiles>
  208.         <profile>
  209.             <id>skipTestsForReleasePerform</id>
  210.             <properties>
  211.                 <maven.test.skip>true</maven.test.skip>
  212.             </properties>
  213.         </profile>
  214.     </profiles>
  215.  
  216.     <distributionManagement>
  217.         <repository>
  218.             <id>releases</id>
  219.             <name>XXX Releases</name>
  220.             <url>XXX</url>
  221.         </repository>
  222.         <snapshotRepository>
  223.             <id>snapshots</id>
  224.             <name>XXX</name>
  225.             <url>XXXX</url>
  226.         </snapshotRepository>
  227.     </distributionManagement>
  228.  
  229. </project>
Advertisement
Add Comment
Please, Sign In to add comment