|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <packaging>jar</packaging> |
| 5 | + <version>1.0-SNAPSHOT</version> |
| 6 | + <name>workplace</name> |
| 7 | + <url>http://maven.apache.org</url> |
| 8 | + |
| 9 | + <groupId>com.cherkashyn.vitalii.startup.searchcorrector</groupId> |
| 10 | + <artifactId>workplace</artifactId> |
| 11 | + |
| 12 | + <build> |
| 13 | + <plugins> |
| 14 | + <plugin> |
| 15 | + <groupId>org.codehaus.gmavenplus</groupId> |
| 16 | + <artifactId>gmavenplus-plugin</artifactId> |
| 17 | + <version>1.9.0</version> |
| 18 | + <executions> |
| 19 | + <execution> |
| 20 | + <goals> |
| 21 | + <goal>addSources</goal> |
| 22 | + <goal>addTestSources</goal> |
| 23 | + <goal>compile</goal> |
| 24 | + <goal>compileTests</goal> |
| 25 | + <goal>execute</goal> |
| 26 | + </goals> |
| 27 | + </execution> |
| 28 | + </executions> |
| 29 | + <configuration> |
| 30 | + <scripts> |
| 31 | + <script>file:///${project.basedir}/camel.groovy</script> |
| 32 | + </scripts> |
| 33 | + </configuration> |
| 34 | + </plugin> |
| 35 | + </plugins> |
| 36 | + </build> |
| 37 | + |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>org.codehaus.groovy</groupId> |
| 41 | + <artifactId>groovy-all</artifactId> |
| 42 | + <!-- any version of Groovy \>= 1.5.0 should work here --> |
| 43 | + <version>3.0.3</version> |
| 44 | + <type>pom</type> |
| 45 | + </dependency> |
| 46 | + |
| 47 | +<!-- https://mvnrepository.com/artifact/org.apache.camel/camel-core --> |
| 48 | +<dependency> |
| 49 | + <groupId>org.apache.camel</groupId> |
| 50 | + <artifactId>camel-core</artifactId> |
| 51 | + <version>3.3.0</version> |
| 52 | +</dependency> |
| 53 | + |
| 54 | +<!-- https://mvnrepository.com/artifact/org.apache.camel/camel-groovy --> |
| 55 | +<dependency> |
| 56 | + <groupId>org.apache.camel</groupId> |
| 57 | + <artifactId>camel-groovy</artifactId> |
| 58 | + <version>3.3.0</version> |
| 59 | +</dependency> |
| 60 | + |
| 61 | + </dependencies> |
| 62 | + |
| 63 | +</project> |
0 commit comments