|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>io.github.sanctuuary</groupId> |
6 | 6 | <artifactId>APE</artifactId> |
7 | | - <version>2.1.4</version> |
| 7 | + <version>2.1.5</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 | <name>io.github.sanctuuary:APE</name> |
10 | 10 | <description>APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.</description> |
|
65 | 65 | </execution> |
66 | 66 | </executions> |
67 | 67 | </plugin> |
| 68 | + <plugin> |
| 69 | + <groupId>org.apache.maven.plugins</groupId> |
| 70 | + <artifactId>maven-surefire-plugin</artifactId> |
| 71 | + <version>3.0.0-M5</version> |
| 72 | + </plugin> |
68 | 73 | <plugin> |
69 | 74 | <groupId>org.apache.maven.plugins</groupId> |
70 | | - <artifactId>maven-surefire-plugin</artifactId> |
71 | | - <version>3.0.0-M4</version> |
| 75 | + <artifactId>maven-site-plugin</artifactId> |
| 76 | + <version>3.7.1</version> |
72 | 77 | </plugin> |
73 | | - <plugin> |
| 78 | + <plugin> |
| 79 | + <groupId>org.apache.maven.plugins</groupId> |
| 80 | + <artifactId>maven-source-plugin</artifactId> |
| 81 | + <version>3.2.1</version> |
| 82 | + <executions> |
| 83 | + <execution> |
| 84 | + <id>attach-sources</id> |
| 85 | + <goals> |
| 86 | + <goal>jar-no-fork</goal> |
| 87 | + </goals> |
| 88 | + </execution> |
| 89 | + </executions> |
| 90 | + </plugin> |
| 91 | + <plugin> |
74 | 92 | <groupId>org.apache.maven.plugins</groupId> |
75 | 93 | <artifactId>maven-javadoc-plugin</artifactId> |
76 | 94 | <version>3.4.0</version> |
|
83 | 101 | </execution> |
84 | 102 | </executions> |
85 | 103 | </plugin> |
| 104 | + <plugin> |
| 105 | + <groupId>org.sonatype.plugins</groupId> |
| 106 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 107 | + <version>1.6.13</version> |
| 108 | + <extensions>true</extensions> |
| 109 | + <configuration> |
| 110 | + <serverId>ossrh</serverId> |
| 111 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 112 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 113 | + </configuration> |
| 114 | + </plugin> |
| 115 | + <plugin> |
| 116 | + <groupId>org.apache.maven.plugins</groupId> |
| 117 | + <artifactId>maven-gpg-plugin</artifactId> |
| 118 | + <version>3.0.1</version> |
| 119 | + <executions> |
| 120 | + <execution> |
| 121 | + <id>sign-artifacts</id> |
| 122 | + <phase>verify</phase> |
| 123 | + <goals> |
| 124 | + <goal>sign</goal> |
| 125 | + </goals> |
| 126 | + </execution> |
| 127 | + </executions> |
| 128 | + </plugin> |
86 | 129 | </plugins> |
87 | 130 | </build> |
88 | 131 |
|
|
103 | 146 | <dependency> |
104 | 147 | <groupId>org.apache.commons</groupId> |
105 | 148 | <artifactId>commons-lang3</artifactId> |
106 | | - <version>3.12.0</version> |
| 149 | + <version>3.13.0</version> |
107 | 150 | </dependency> |
108 | 151 | <dependency> |
109 | 152 | <groupId>org.apache.logging.log4j</groupId> |
|
119 | 162 | <dependency> |
120 | 163 | <groupId>org.json</groupId> |
121 | 164 | <artifactId>json</artifactId> |
122 | | - <version>20230227</version> |
| 165 | + <version>20230618</version> |
123 | 166 | </dependency> |
124 | 167 | <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> |
125 | 168 | <dependency> |
126 | 169 | <groupId>org.junit.jupiter</groupId> |
127 | 170 | <artifactId>junit-jupiter-api</artifactId> |
128 | | - <version>5.8.2</version> |
| 171 | + <version>5.10.0</version> |
129 | 172 | <scope>test</scope> |
130 | 173 | </dependency> |
131 | 174 | <dependency> |
|
142 | 185 | <dependency> |
143 | 186 | <groupId>org.antlr</groupId> |
144 | 187 | <artifactId>antlr4-runtime</artifactId> |
145 | | - <version>4.12.0</version> |
| 188 | + <version>4.13.0</version> |
146 | 189 | </dependency> |
147 | 190 | <dependency> |
148 | 191 | <groupId>org.yaml</groupId> |
|
0 commit comments