|
4 | 4 | <groupId>org.jruby</groupId> |
5 | 5 | <artifactId>jruby-prism</artifactId> |
6 | 6 | <packaging>jar</packaging> |
7 | | - <version>1.5.0</version> |
| 7 | + <version>2.0.0-SNAPSHOT</version> |
8 | 8 | <name>jruby-prism</name> |
9 | 9 | <description> |
10 | 10 | Java portion of JRuby Prism parser support. |
|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 15 | <chicory.version>1.2.1</chicory.version> |
16 | 16 | <junit.version>5.12.1</junit.version> |
17 | | - <maven.compiler.source>17</maven.compiler.source> |
18 | | - <maven.compiler.target>17</maven.compiler.target> |
| 17 | + <maven.compiler.source>21</maven.compiler.source> |
| 18 | + <maven.compiler.target>21</maven.compiler.target> |
19 | 19 | </properties> |
20 | 20 |
|
21 | 21 | <parent> |
|
66 | 66 | <dependency> |
67 | 67 | <groupId>org.jruby</groupId> |
68 | 68 | <artifactId>jruby-base</artifactId> |
69 | | - <version>10.0.0.0-SNAPSHOT</version> |
| 69 | + <version>10.0.2.0</version> |
70 | 70 | </dependency> |
71 | 71 | <dependency> |
72 | | - <groupId>com.prism</groupId> |
73 | | - <artifactId>java-prism</artifactId> |
74 | | - <version>999-SNAPSHOT</version> |
| 72 | + <groupId>org.jruby</groupId> |
| 73 | + <artifactId>chicory-prism</artifactId> |
| 74 | + <version>0.0.1-SNAPSHOT</version> |
75 | 75 | </dependency> |
76 | 76 | </dependencies> |
77 | 77 |
|
|
116 | 116 | </archive> |
117 | 117 | </configuration> |
118 | 118 | </plugin> |
119 | | - <plugin> |
120 | | - <groupId>org.apache.maven.plugins</groupId> |
121 | | - <artifactId>maven-gpg-plugin</artifactId> |
122 | | - <version>1.5</version> |
123 | | - <executions> |
124 | | - <execution> |
125 | | - <id>sign-artifacts</id> |
126 | | - <phase>verify</phase> |
127 | | - <goals> |
128 | | - <goal>sign</goal> |
129 | | - </goals> |
130 | | - </execution> |
131 | | - </executions> |
132 | | - </plugin> |
133 | | - <plugin> |
134 | | - <artifactId>maven-source-plugin</artifactId> |
135 | | - <executions> |
136 | | - <execution> |
137 | | - <id>attach-sources</id> |
138 | | - <goals> |
139 | | - <goal>jar-no-fork</goal> |
140 | | - </goals> |
141 | | - </execution> |
142 | | - </executions> |
143 | | - </plugin> |
144 | | - <plugin> |
145 | | - <artifactId>maven-javadoc-plugin</artifactId> |
146 | | - <executions> |
147 | | - <execution> |
148 | | - <id>attach-javadocs</id> |
149 | | - <goals> |
150 | | - <goal>jar</goal> |
151 | | - </goals> |
152 | | - </execution> |
153 | | - </executions> |
154 | | - <configuration> |
155 | | - <doclint>none</doclint> |
156 | | - </configuration> |
157 | | - </plugin> |
158 | 119 | </plugins> |
159 | 120 | </build> |
160 | 121 | <profiles> |
|
210 | 171 | </plugins> |
211 | 172 | </build> |
212 | 173 | </profile> |
| 174 | + <profile> |
| 175 | + <id>release</id> |
| 176 | + <build> |
| 177 | + <plugins> |
| 178 | + <plugin> |
| 179 | + <artifactId>maven-gpg-plugin</artifactId> |
| 180 | + <version>1.6</version> |
| 181 | + <executions> |
| 182 | + <execution> |
| 183 | + <id>sign-artifacts</id> |
| 184 | + <phase>verify</phase> |
| 185 | + <goals> |
| 186 | + <goal>sign</goal> |
| 187 | + </goals> |
| 188 | + </execution> |
| 189 | + </executions> |
| 190 | + <configuration> |
| 191 | + <gpgArguments> |
| 192 | + <gpgArgument>--pinentry-mode</gpgArgument> |
| 193 | + <gpgArgument>loopback</gpgArgument> |
| 194 | + </gpgArguments> |
| 195 | + </configuration> |
| 196 | + </plugin> |
| 197 | + <plugin> |
| 198 | + <artifactId>maven-source-plugin</artifactId> |
| 199 | + <executions> |
| 200 | + <execution> |
| 201 | + <id>attach-sources</id> |
| 202 | + <goals> |
| 203 | + <goal>jar-no-fork</goal> |
| 204 | + </goals> |
| 205 | + </execution> |
| 206 | + </executions> |
| 207 | + </plugin> |
| 208 | + <plugin> |
| 209 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 210 | + <executions> |
| 211 | + <execution> |
| 212 | + <id>attach-javadocs</id> |
| 213 | + <goals> |
| 214 | + <goal>jar</goal> |
| 215 | + </goals> |
| 216 | + </execution> |
| 217 | + </executions> |
| 218 | + <configuration> |
| 219 | + <doclint>none</doclint> |
| 220 | + </configuration> |
| 221 | + </plugin> |
| 222 | + </plugins> |
| 223 | + </build> |
| 224 | + </profile> |
213 | 225 | </profiles> |
214 | 226 | </project> |
0 commit comments