|
21 | 21 | </issueManagement> |
22 | 22 |
|
23 | 23 | <properties> |
| 24 | + <java.version>21</java.version> |
| 25 | + <assembly.name>local</assembly.name> |
24 | 26 | <maven-git-code-format.version>5.1</maven-git-code-format.version> |
25 | 27 | <sonar.organization>comixed</sonar.organization> |
26 | 28 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
|
53 | 55 | <artifactId>log4j-core</artifactId> |
54 | 56 | <version>${log4j.version}</version> |
55 | 57 | </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.python</groupId> |
| 60 | + <artifactId>jython</artifactId> |
| 61 | + <version>2.7.4</version> |
| 62 | + </dependency> |
56 | 63 | <dependency> |
57 | 64 | <groupId>junit</groupId> |
58 | 65 | <artifactId>junit</artifactId> |
|
69 | 76 |
|
70 | 77 | <build> |
71 | 78 | <plugins> |
| 79 | + <plugin> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-compiler-plugin</artifactId> |
| 82 | + <version>3.8.1</version> |
| 83 | + <configuration> |
| 84 | + <source>${java.version}</source> |
| 85 | + <target>${java.version}</target> |
| 86 | + <annotationProcessorPaths> |
| 87 | + <path> |
| 88 | + <groupId>org.projectlombok</groupId> |
| 89 | + <artifactId>lombok</artifactId> |
| 90 | + <version>${lombok.version}</version> |
| 91 | + </path> |
| 92 | + </annotationProcessorPaths> |
| 93 | + </configuration> |
| 94 | + </plugin> |
72 | 95 | <plugin> |
73 | 96 | <groupId>com.cosium.code</groupId> |
74 | 97 | <artifactId>git-code-format-maven-plugin</artifactId> |
|
95 | 118 | </dependency> |
96 | 119 | </dependencies> |
97 | 120 | </plugin> |
| 121 | + <plugin> |
| 122 | + <artifactId>maven-clean-plugin</artifactId> |
| 123 | + <version>3.1.0</version> |
| 124 | + <configuration> |
| 125 | + <filesets> |
| 126 | + <fileset> |
| 127 | + <directory>${project.basedir}</directory> |
| 128 | + <includes>CHANGELOG.md</includes> |
| 129 | + <includes>comixed-metadata-comicvine-*.zip</includes> |
| 130 | + </fileset> |
| 131 | + </filesets> |
| 132 | + </configuration> |
| 133 | + </plugin> |
| 134 | + <plugin> |
| 135 | + <artifactId>maven-clean-plugin</artifactId> |
| 136 | + <version>3.1.0</version> |
| 137 | + <configuration> |
| 138 | + <filesets> |
| 139 | + <fileset> |
| 140 | + <directory>${project.basedir}</directory> |
| 141 | + <includes>CHANGELOG.md</includes> |
| 142 | + <includes>comixed-plugin-language-python-*.zip</includes> |
| 143 | + </fileset> |
| 144 | + </filesets> |
| 145 | + </configuration> |
| 146 | + </plugin> |
| 147 | + <plugin> |
| 148 | + <groupId>com.github.danielflower.mavenplugins</groupId> |
| 149 | + <artifactId>gitlog-maven-plugin</artifactId> |
| 150 | + <version>1.14.0</version> |
| 151 | + <configuration> |
| 152 | + <reportTitle>Changelog for the ComiXed Python Language Plugin v0.1-SNAPSHOT</reportTitle> |
| 153 | + <verbose>false</verbose> |
| 154 | + <outputDirectory>${project.basedir}</outputDirectory> |
| 155 | + <generateMarkdownChangeLog>true</generateMarkdownChangeLog> |
| 156 | + <markdownChangeLogFilename>CHANGELOG.md</markdownChangeLogFilename> |
| 157 | + <generateSimpleHTMLChangeLog>false</generateSimpleHTMLChangeLog> |
| 158 | + <generatePlainTextChangeLog>false</generatePlainTextChangeLog> |
| 159 | + <generateAsciidocChangeLog>false</generateAsciidocChangeLog> |
| 160 | + <generateJSONChangeLog>false</generateJSONChangeLog> |
| 161 | + <generateHTMLTableOnlyChangeLog>false</generateHTMLTableOnlyChangeLog> |
| 162 | + <issueManagementSystem>GitHub issue tracker</issueManagementSystem> |
| 163 | + <issueManagementUrl>https://github.com/comixed/comixed/issues</issueManagementUrl> |
| 164 | + <fullGitMessage>false</fullGitMessage> |
| 165 | + <dateFormat>yyyy-MM-dd HH:mm:ss Z</dateFormat> |
| 166 | + <bugzillaPattern>(?:Bug|UPDATE|FIX|ADD|NEW|#) ?#?(\d+)</bugzillaPattern> |
| 167 | + </configuration> |
| 168 | + <executions> |
| 169 | + <execution> |
| 170 | + <goals> |
| 171 | + <goal>generate</goal> |
| 172 | + </goals> |
| 173 | + </execution> |
| 174 | + </executions> |
| 175 | + </plugin> |
| 176 | + <plugin> |
| 177 | + <groupId>org.sonarsource.scanner.maven</groupId> |
| 178 | + <artifactId>sonar-maven-plugin</artifactId> |
| 179 | + <version>4.0.0.4121</version> |
| 180 | + </plugin> |
| 181 | + <plugin> |
| 182 | + <artifactId>maven-assembly-plugin</artifactId> |
| 183 | + <version>3.2.0</version> |
| 184 | + <configuration> |
| 185 | + <outputDirectory>${project.basedir}</outputDirectory> |
| 186 | + <descriptors> |
| 187 | + <descriptor>src/main/assembly/src.xml</descriptor> |
| 188 | + </descriptors> |
| 189 | + </configuration> |
| 190 | + <executions> |
| 191 | + <execution> |
| 192 | + <id>make-assembly</id> |
| 193 | + <phase>package</phase> |
| 194 | + <goals> |
| 195 | + <goal>single</goal> |
| 196 | + </goals> |
| 197 | + </execution> |
| 198 | + </executions> |
| 199 | + </plugin> |
98 | 200 | </plugins> |
99 | 201 | </build> |
100 | 202 | </project> |
0 commit comments