|
15 | 15 | ~ limitations under the License. |
16 | 16 | --> |
17 | 17 |
|
18 | | -<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"> |
| 18 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
19 | 20 |
|
20 | 21 | <parent> |
21 | 22 | <groupId>net.openhft</groupId> |
22 | 23 | <artifactId>java-parent-pom</artifactId> |
23 | 24 | <version>1.1.23</version> |
| 25 | + <relativePath/> |
24 | 26 | </parent> |
25 | 27 |
|
26 | 28 | <modelVersion>4.0.0</modelVersion> |
|
83 | 85 | <plugin> |
84 | 86 | <groupId>org.apache.maven.plugins</groupId> |
85 | 87 | <artifactId>maven-compiler-plugin</artifactId> |
| 88 | + <version>3.8.1</version> |
86 | 89 | <configuration> |
87 | 90 | <source>1.8</source> |
88 | 91 | <target>1.8</target> |
89 | 92 | </configuration> |
90 | 93 | </plugin> |
| 94 | + |
| 95 | + <plugin> |
| 96 | + <groupId>org.codehaus.mojo</groupId> |
| 97 | + <artifactId>exec-maven-plugin</artifactId> |
| 98 | + <version>1.6.0</version> |
| 99 | + <executions> |
| 100 | + <execution> |
| 101 | + <id>compiler-test</id> |
| 102 | + <phase>integration-test</phase> |
| 103 | + <goals> |
| 104 | + <goal>exec</goal> |
| 105 | + </goals> |
| 106 | + </execution> |
| 107 | + </executions> |
| 108 | + <configuration> |
| 109 | + <classpathScope>test</classpathScope> |
| 110 | + <executable>java</executable> |
| 111 | + <arguments> |
| 112 | + <argument>-classpath</argument> |
| 113 | + <classpath/> |
| 114 | + <argument>net.openhft.compiler.CompilerTest</argument> |
| 115 | + </arguments> |
| 116 | + </configuration> |
| 117 | + </plugin> |
| 118 | + |
91 | 119 | <!-- |
92 | 120 | generate maven dependencies versions file that can be used later |
93 | 121 | to install the right bundle in test phase. |
|
99 | 127 | <plugin> |
100 | 128 | <groupId>org.apache.servicemix.tooling</groupId> |
101 | 129 | <artifactId>depends-maven-plugin</artifactId> |
| 130 | + <version>1.4.0</version> |
102 | 131 | <executions> |
103 | 132 | <execution> |
104 | 133 | <id>generate-depends-file</id> |
|
111 | 140 | <plugin> |
112 | 141 | <groupId>org.apache.felix</groupId> |
113 | 142 | <artifactId>maven-bundle-plugin</artifactId> |
| 143 | + <version>4.2.1</version> |
114 | 144 | <extensions>true</extensions> |
115 | 145 | <configuration> |
116 | 146 | <instructions> |
|
0 commit comments