113 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns="http://maven.apache.org/POM/4.0.0"
 | |
|          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <groupId>org.example</groupId>
 | |
|     <artifactId>Camel</artifactId>
 | |
|     <version>1.0-SNAPSHOT</version>
 | |
| 
 | |
|     <properties>
 | |
|         <maven.compiler.source>11</maven.compiler.source>
 | |
|         <maven.compiler.target>11</maven.compiler.target>
 | |
|     </properties>
 | |
| 
 | |
|     <dependencies>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.camel</groupId>
 | |
|             <artifactId>camel-core</artifactId>
 | |
|             <version>3.12.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.camel</groupId>
 | |
|             <artifactId>camel-jdbc</artifactId>
 | |
|             <version>3.12.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>mysql</groupId>
 | |
|             <artifactId>mysql-connector-java</artifactId>
 | |
|             <version>8.0.27</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-log4j12</artifactId>
 | |
|             <version>2.0.0-alpha5</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-api</artifactId>
 | |
|             <version>2.0.0-alpha5</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.camel</groupId>
 | |
|             <artifactId>camel-activemq</artifactId>
 | |
|             <version>3.12.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>javax.xml.bind</groupId>
 | |
|             <artifactId>jaxb-api</artifactId>
 | |
|             <version>2.3.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.sun.xml.bind</groupId>
 | |
|             <artifactId>jaxb-impl</artifactId>
 | |
|             <version>3.0.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.camel.springboot</groupId>
 | |
|             <artifactId>camel-jaxb-starter</artifactId>
 | |
|             <version>3.12.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- https://mvnrepository.com/artifact/javax.activation/activation -->
 | |
|         <dependency>
 | |
|             <groupId>javax.activation</groupId>
 | |
|             <artifactId>activation</artifactId>
 | |
|             <version>1.1</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
 | |
|         <dependency>
 | |
|             <groupId>org.glassfish.jaxb</groupId>
 | |
|             <artifactId>jaxb-runtime</artifactId>
 | |
|             <version>2.3.1</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.codehaus.mojo</groupId>
 | |
|                 <artifactId>jaxb2-maven-plugin</artifactId>
 | |
|                 <version>2.5.0</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>xsd-to-java</id>
 | |
|                         <goals>
 | |
|                             <goal>xjc</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|                 <configuration>
 | |
|                     <sources>
 | |
|                         <source>${basedir}/src/main/resources/material.xsd</source>
 | |
|                     </sources>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| 
 | |
| </project>
 |