-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
67 lines (67 loc) · 3.1 KB
/
pom.xml
File metadata and controls
67 lines (67 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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>
<parent>
<groupId>com.modelsolv.reprezen.generators</groupId>
<artifactId>pet-store-expanded</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>java-spring--boot---mvc---cloudfeign--server-gen</artifactId>
<name>GenTarget Launcher For Java Spring (Boot + MVC + CloudFeign) Server.gen</name>
<packaging>pom</packaging>
<properties>
<project.lib.dir>/Users/tanya/Documents/workspace/Contract-as-Code-Demo-OpenAPI3---Spring-Boot/Expanded Pet Store (v3)/lib</project.lib.dir>
<shared.gentemplates.dir>/Users/tanya/RepreZen/workspace/shared/GenTemplates</shared.gentemplates.dir>
</properties>
<build>
<defaultGoal>clean generate-sources</defaultGoal>
<plugins>
<plugin>
<groupId>com.googlecode.addjars-maven-plugin</groupId>
<artifactId>addjars-maven-plugin</artifactId>
<version>1.0.5</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-jars</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${shared.gentemplates.dir}</directory>
</resource>
<resource>
<directory>${project.lib.dir}</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<includeProjectDependencies>true</includeProjectDependencies>
<mainClass>com.modelsolv.reprezen.generators.api.util.GeneratorLauncher</mainClass>
<classpathScope>compile</classpathScope>
<cleanupDaemonThreads>false</cleanupDaemonThreads>
<arguments>
<argument>Java Spring (Boot + MVC + CloudFeign) Server.gen</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>