|
9 | 9 | </parent> |
10 | 10 |
|
11 | 11 | <artifactId>prism-parser-api</artifactId> |
12 | | - <name>Java Prism API</name> |
| 12 | + <name>Java Prism</name> |
13 | 13 | <description>Java API for the Prism Ruby language parser</description> |
14 | 14 | <url>https://github.com/ruby/prism</url> |
15 | 15 |
|
16 | | - <repositories> |
17 | | - <repository> |
18 | | - <id>mavengems</id> |
19 | | - <url>mavengem:https://rubygems.org</url> |
20 | | - </repository> |
21 | | - </repositories> |
22 | | - |
23 | 16 | <dependencies> |
24 | 17 | <dependency> |
25 | 18 | <groupId>org.ruby-lang</groupId> |
26 | 19 | <artifactId>prism-parser-native</artifactId> |
27 | 20 | <version>0.0.2-SNAPSHOT</version> |
28 | 21 | <scope>provided</scope> |
29 | 22 | </dependency> |
30 | | - <dependency> |
31 | | - <groupId>rubygems</groupId> |
32 | | - <artifactId>rake</artifactId> |
33 | | - <version>13.0.3</version> |
34 | | - <type>gem</type> |
35 | | - </dependency> |
36 | | - <dependency> |
37 | | - <groupId>rubygems</groupId> |
38 | | - <artifactId>rake-compiler</artifactId> |
39 | | - <version>1.3.1</version> |
40 | | - <type>gem</type> |
41 | | - </dependency> |
42 | 23 | </dependencies> |
43 | 24 |
|
44 | 25 | <build> |
45 | | - <extensions> |
46 | | - <extension> |
47 | | - <groupId>org.jruby.maven</groupId> |
48 | | - <artifactId>mavengem-wagon</artifactId> |
49 | | - <version>2.0.2</version> |
50 | | - </extension> |
51 | | - </extensions> |
52 | 26 | <plugins> |
53 | | - <plugin> |
54 | | - <groupId>org.codehaus.mojo</groupId> |
55 | | - <artifactId>build-helper-maven-plugin</artifactId> |
56 | | - <version>3.6.1</version> |
57 | | - <executions> |
58 | | - <execution> |
59 | | - <id>add-source</id> |
60 | | - <phase>generate-sources</phase> |
61 | | - <goals> |
62 | | - <goal>add-source</goal> |
63 | | - </goals> |
64 | | - <configuration> |
65 | | - <sources> |
66 | | - <source>target/generated-sources/java</source> |
67 | | - </sources> |
68 | | - </configuration> |
69 | | - </execution> |
70 | | - </executions> |
71 | | - </plugin> |
72 | | - <plugin> |
73 | | - <groupId>org.jruby.maven</groupId> |
74 | | - <artifactId>rake-maven-plugin</artifactId> |
75 | | - <version>3.0.6</version> |
76 | | - <executions> |
77 | | - <execution> |
78 | | - <id>generate templated Java sources</id> |
79 | | - <phase>generate-sources</phase> |
80 | | - <goals> |
81 | | - <goal>rake</goal> |
82 | | - </goals> |
83 | | - <configuration> |
84 | | - <launchDirectory>${project.basedir}/../..</launchDirectory> |
85 | | - <rakeArgs>PRISM_EXCLUDE_PRETTYPRINT=1 PRISM_SERIALIZE_ONLY_SEMANTICS_FIELDS=1 templates</rakeArgs> |
86 | | - </configuration> |
87 | | - </execution> |
88 | | - </executions> |
89 | | - </plugin> |
90 | 27 | <plugin> |
91 | 28 | <groupId>org.codehaus.mojo</groupId> |
92 | 29 | <artifactId>templating-maven-plugin</artifactId> |
|
0 commit comments