|
4 | 4 |
|
5 | 5 | <groupId>org.honton.chas</groupId> |
6 | 6 | <artifactId>process-exec-maven-plugin</artifactId> |
7 | | - <version>0.9.1</version> |
| 7 | + <version>0.9.2-SNAPSHOT</version> |
8 | 8 | <packaging>maven-plugin</packaging> |
9 | 9 |
|
10 | 10 | <name>Process execution maven plugin</name> |
|
40 | 40 | </scm> |
41 | 41 |
|
42 | 42 | <properties> |
43 | | - <guava.version>15.0</guava.version> |
44 | | - |
45 | 43 | <maven.compiler.source>1.7</maven.compiler.source> |
46 | 44 | <maven.compiler.target>1.7</maven.compiler.target> |
47 | 45 | <!-- use org.sonatype.plugins:nexus-staging-maven-plugin instead of org.apache.maven.plugins:maven-deploy-plugin --> |
|
54 | 52 | </properties> |
55 | 53 |
|
56 | 54 | <dependencies> |
57 | | - <dependency> |
58 | | - <groupId>com.google.guava</groupId> |
59 | | - <artifactId>guava</artifactId> |
60 | | - <version>${guava.version}</version> |
61 | | - </dependency> |
62 | | - |
63 | | - <dependency> |
64 | | - <groupId>commons-io</groupId> |
65 | | - <artifactId>commons-io</artifactId> |
66 | | - <version>2.1</version> |
67 | | - </dependency> |
68 | 55 |
|
69 | 56 | <dependency> |
70 | 57 | <groupId>commons-net</groupId> |
|
73 | 60 | </dependency> |
74 | 61 |
|
75 | 62 | <dependency> |
76 | | - <groupId>org.apache.commons</groupId> |
77 | | - <artifactId>commons-exec</artifactId> |
78 | | - <version>1.2</version> |
| 63 | + <groupId>junit</groupId> |
| 64 | + <artifactId>junit</artifactId> |
| 65 | + <version>4.12</version> |
| 66 | + <scope>test</scope> |
79 | 67 | </dependency> |
80 | 68 |
|
81 | 69 | <dependency> |
|
109 | 97 | <version>${maven.model.version}</version> |
110 | 98 | </dependency> |
111 | 99 |
|
112 | | - <dependency> |
113 | | - <groupId>org.codehaus.plexus</groupId> |
114 | | - <artifactId>plexus-utils</artifactId> |
115 | | - <version>${maven.model.version}</version> |
116 | | - </dependency> |
117 | | - |
118 | | - <dependency> |
119 | | - <groupId>org.testng</groupId> |
120 | | - <artifactId>testng</artifactId> |
121 | | - <version>6.8.7</version> |
122 | | - <scope>test</scope> |
123 | | - </dependency> |
124 | | - |
125 | 100 | <dependency> |
126 | 101 | <groupId>org.honton.chas.url</groupId> |
127 | 102 | <artifactId>url-extension</artifactId> |
|
133 | 108 | <build> |
134 | 109 | <plugins> |
135 | 110 |
|
| 111 | + <plugin> |
| 112 | + <artifactId>maven-invoker-plugin</artifactId> |
| 113 | + <version>2.0.0</version> |
| 114 | + <configuration> |
| 115 | + <postBuildHookScript>verify</postBuildHookScript> |
| 116 | + <addTestClassPath>true</addTestClassPath> |
| 117 | + </configuration> |
| 118 | + <executions> |
| 119 | + <execution> |
| 120 | + <id>integration-test</id> |
| 121 | + <goals> |
| 122 | + <goal>install</goal> |
| 123 | + <goal>verify</goal> |
| 124 | + <goal>run</goal> |
| 125 | + </goals> |
| 126 | + </execution> |
| 127 | + </executions> |
| 128 | + </plugin> |
| 129 | + |
136 | 130 | <plugin> |
137 | 131 | <groupId>org.apache.maven.plugins</groupId> |
138 | 132 | <artifactId>maven-plugin-plugin</artifactId> |
|
163 | 157 | <version>2.18.1</version> |
164 | 158 | </plugin> |
165 | 159 |
|
166 | | - |
167 | | - <plugin> |
168 | | - <artifactId>maven-invoker-plugin</artifactId> |
169 | | - <version>2.0.0</version> |
170 | | - <configuration> |
171 | | - </configuration> |
172 | | - <executions> |
173 | | - <execution> |
174 | | - <id>integration-test</id> |
175 | | - <goals> |
176 | | - <goal>verify</goal> |
177 | | - <goal>run</goal> |
178 | | - </goals> |
179 | | - </execution> |
180 | | - </executions> |
181 | | - </plugin> |
182 | | - |
183 | 160 | </plugins> |
184 | 161 | </build> |
185 | 162 |
|
|
0 commit comments