Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.96 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <groupId>com.example</groupId>
  7.     <artifactId>example</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.     <properties>
  10.         <java.version>1.8</java.version>
  11.         <springframework.boot.version>2.1.3.RELEASE</springframework.boot.version>
  12.         <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
  13.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14.     </properties>
  15.     <dependencyManagement>
  16.         <dependencies>
  17.             <dependency>
  18.                 <!-- Import dependency management from Spring Boot -->
  19.                 <groupId>org.springframework.boot</groupId>
  20.                 <artifactId>spring-boot-dependencies</artifactId>
  21.                 <version>${springframework.boot.version}</version>
  22.                 <type>pom</type>
  23.                 <scope>import</scope>
  24.             </dependency>
  25.         </dependencies>
  26.     </dependencyManagement>
  27.     <dependencies>
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter-amqp</artifactId>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>org.springframework.boot</groupId>
  34.             <artifactId>spring-boot-starter-quartz</artifactId>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>org.springframework.boot</groupId>
  38.             <artifactId>spring-boot-starter-web-services</artifactId>
  39.         </dependency>
  40.         <dependency>
  41.             <groupId>wsdl4j</groupId>
  42.             <artifactId>wsdl4j</artifactId>
  43.         </dependency>
  44.         <dependency>
  45.             <groupId>org.springframework.boot</groupId>
  46.             <artifactId>spring-boot-starter-test</artifactId>
  47.             <scope>test</scope>
  48.         </dependency>
  49.     </dependencies>
  50.     <build>
  51.         <plugins>
  52.             <plugin>
  53.                 <groupId>org.codehaus.mojo</groupId>
  54.                 <artifactId>jaxb2-maven-plugin</artifactId>
  55.                 <version>1.6</version>
  56.                 <executions>
  57.                     <execution>
  58.                         <id>xjc</id>
  59.                         <goals>
  60.                             <goal>xjc</goal>
  61.                         </goals>
  62.                     </execution>
  63.                 </executions>
  64.                 <configuration>
  65.                     <wsdl>true</wsdl>
  66.                     <xmlschema>false</xmlschema>
  67.                     <schemaFiles>osg_data_sync_interface_1_0.wsdl,parlayx_sms_notification_interface_2_2.wsdl</schemaFiles>
  68.                     <schemaDirectory>src/main/resources/wsdl</schemaDirectory>
  69.                     <outputDirectory>${project.basedir}/src/main/generated</outputDirectory>
  70.                 </configuration>
  71.                 <!-- <configuration> <sourceType>wsdl</sourceType> <externalEntityProcessing>true</externalEntityProcessing>
  72.                     <verbose>true</verbose> <sources> <source>src/main/resources/wsdl/osg_data_sync_interface_1_0.wsdl</source>
  73.                     <source>src/main/resources/wsdl/parlayx_sms_notification_interface_2_2.wsdl</source>
  74.                     </sources> <outputDirectory>${project.basedir}/src/main/generated</outputDirectory>
  75.                     <clearOutputDir>false</clearOutputDir> </configuration> -->
  76.             </plugin>
  77.             <plugin>
  78.                 <groupId>org.codehaus.mojo</groupId>
  79.                 <artifactId>build-helper-maven-plugin</artifactId>
  80.                 <version>3.0.0</version>
  81.                 <executions>
  82.                     <execution>
  83.                         <id>add-source</id>
  84.                         <phase>generate-sources</phase>
  85.                         <goals>
  86.                             <goal>add-source</goal>
  87.                         </goals>
  88.                         <configuration>
  89.                             <sources>
  90.                                 <source>${project.basedir}/src/main/generated</source>
  91.                             </sources>
  92.                         </configuration>
  93.                     </execution>
  94.                 </executions>
  95.             </plugin>
  96.             <plugin>
  97.                 <artifactId>maven-compiler-plugin</artifactId>
  98.                 <version>${maven-compiler-plugin.version}</version>
  99.                 <configuration>
  100.                     <source>${java.version}</source>
  101.                     <target>${java.version}</target>
  102.                 </configuration>
  103.             </plugin>
  104.             <plugin>
  105.                 <groupId>org.springframework.boot</groupId>
  106.                 <artifactId>spring-boot-maven-plugin</artifactId>
  107.                 <version>${springframework.boot.version}</version>
  108.                 <executions>
  109.                     <execution>
  110.                         <goals>
  111.                             <goal>repackage</goal>
  112.                         </goals>
  113.                     </execution>
  114.                 </executions>
  115.             </plugin>
  116.         </plugins>
  117.     </build>
  118. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement