|
24 | 24 | <dependency>
|
25 | 25 | <groupId>com.oracle</groupId>
|
26 | 26 | <artifactId>truffle</artifactId>
|
27 |
| - <version>0.6</version> |
| 27 | + <version>0.7</version> |
28 | 28 | </dependency>
|
29 | 29 | <dependency>
|
30 | 30 | <groupId>com.oracle</groupId>
|
31 | 31 | <artifactId>truffle-dsl-processor</artifactId>
|
32 |
| - <version>0.6</version> |
| 32 | + <version>0.7</version> |
33 | 33 | <scope>provided</scope>
|
34 | 34 | </dependency>
|
35 | 35 | </dependencies>
|
| 36 | + <repositories> |
| 37 | + <repository> |
| 38 | + <releases> |
| 39 | + <enabled>true</enabled> |
| 40 | + </releases> |
| 41 | + <snapshots> |
| 42 | + <enabled>false</enabled> |
| 43 | + </snapshots> |
| 44 | + <id>truffle</id> |
| 45 | + <url>http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/releases/</url> |
| 46 | + </repository> |
| 47 | + </repositories> |
36 | 48 | <build>
|
37 | 49 | <defaultGoal>package</defaultGoal>
|
38 | 50 | <resources>
|
|
96 | 108 | </plugin>
|
97 | 109 | </plugins>
|
98 | 110 | </build>
|
| 111 | + <profiles> |
| 112 | + <profile> |
| 113 | + <id>dist</id> |
| 114 | + <build> |
| 115 | + <plugins> |
| 116 | + <plugin> |
| 117 | + <artifactId>maven-shade-plugin</artifactId> |
| 118 | + <executions> |
| 119 | + <execution> |
| 120 | + <id>pack jruby-truffle-complete.jar</id> |
| 121 | + <phase>verify</phase> |
| 122 | + <goals> |
| 123 | + <goal>shade</goal> |
| 124 | + </goals> |
| 125 | + <configuration> |
| 126 | + <artifactSet> |
| 127 | + <includes> |
| 128 | + <include>com.oracle:truffle</include> |
| 129 | + <include>com.oracle:truffle-interop</include> |
| 130 | + </includes> |
| 131 | + </artifactSet> |
| 132 | + <shadedArtifactAttached>true</shadedArtifactAttached> |
| 133 | + <shadedClassifierName>complete</shadedClassifierName> |
| 134 | + </configuration> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + </plugins> |
| 139 | + </build> |
| 140 | + </profile> |
| 141 | + <profile> |
| 142 | + <id>jruby-jars</id> |
| 143 | + <build> |
| 144 | + <plugins> |
| 145 | + <plugin> |
| 146 | + <artifactId>maven-shade-plugin</artifactId> |
| 147 | + <executions> |
| 148 | + <execution> |
| 149 | + <id>pack jruby-truffle-complete.jar</id> |
| 150 | + <phase>verify</phase> |
| 151 | + <goals> |
| 152 | + <goal>shade</goal> |
| 153 | + </goals> |
| 154 | + <configuration> |
| 155 | + <artifactSet> |
| 156 | + <includes> |
| 157 | + <include>com.oracle:truffle</include> |
| 158 | + <include>com.oracle:truffle-interop</include> |
| 159 | + </includes> |
| 160 | + </artifactSet> |
| 161 | + <shadedArtifactAttached>true</shadedArtifactAttached> |
| 162 | + <shadedClassifierName>complete</shadedClassifierName> |
| 163 | + </configuration> |
| 164 | + </execution> |
| 165 | + </executions> |
| 166 | + </plugin> |
| 167 | + </plugins> |
| 168 | + </build> |
| 169 | + </profile> |
| 170 | + <profile> |
| 171 | + <id>all</id> |
| 172 | + <build> |
| 173 | + <plugins> |
| 174 | + <plugin> |
| 175 | + <artifactId>maven-shade-plugin</artifactId> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <id>pack jruby-truffle-complete.jar</id> |
| 179 | + <phase>verify</phase> |
| 180 | + <goals> |
| 181 | + <goal>shade</goal> |
| 182 | + </goals> |
| 183 | + <configuration> |
| 184 | + <artifactSet> |
| 185 | + <includes> |
| 186 | + <include>com.oracle:truffle</include> |
| 187 | + <include>com.oracle:truffle-interop</include> |
| 188 | + </includes> |
| 189 | + </artifactSet> |
| 190 | + <shadedArtifactAttached>true</shadedArtifactAttached> |
| 191 | + <shadedClassifierName>complete</shadedClassifierName> |
| 192 | + </configuration> |
| 193 | + </execution> |
| 194 | + </executions> |
| 195 | + </plugin> |
| 196 | + </plugins> |
| 197 | + </build> |
| 198 | + </profile> |
| 199 | + <profile> |
| 200 | + <id>release</id> |
| 201 | + <build> |
| 202 | + <plugins> |
| 203 | + <plugin> |
| 204 | + <artifactId>maven-shade-plugin</artifactId> |
| 205 | + <executions> |
| 206 | + <execution> |
| 207 | + <id>pack jruby-truffle-complete.jar</id> |
| 208 | + <phase>verify</phase> |
| 209 | + <goals> |
| 210 | + <goal>shade</goal> |
| 211 | + </goals> |
| 212 | + <configuration> |
| 213 | + <artifactSet> |
| 214 | + <includes> |
| 215 | + <include>com.oracle:truffle</include> |
| 216 | + <include>com.oracle:truffle-interop</include> |
| 217 | + </includes> |
| 218 | + </artifactSet> |
| 219 | + <shadedArtifactAttached>true</shadedArtifactAttached> |
| 220 | + <shadedClassifierName>complete</shadedClassifierName> |
| 221 | + </configuration> |
| 222 | + </execution> |
| 223 | + </executions> |
| 224 | + </plugin> |
| 225 | + </plugins> |
| 226 | + </build> |
| 227 | + </profile> |
| 228 | + </profiles> |
99 | 229 | </project>
|
0 commit comments