|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>org.comixedproject</groupId> |
| 5 | + <artifactId>comixed-plugin-language-groovy</artifactId> |
| 6 | + <packaging>jar</packaging> |
| 7 | + <version>0.1-SNAPSHOT</version> |
| 8 | + <name>comixed-plugin-language-groovy</name> |
| 9 | + <url>https://github.com/comixed/comixed-plugin-language-groovy</url> |
| 10 | + |
| 11 | + <scm> |
| 12 | + <connection>scm:git:git@github.com:comixed/comixed-plugin-language-groovy.git</connection> |
| 13 | + <developerConnection>scm:git:git@github.com:comixed/comixed-plugin-language-groovy.git</developerConnection> |
| 14 | + <url>scm:git:git@github.com:comixed/comixed-plugin-language-groovy.git</url> |
| 15 | + <tag>main</tag> |
| 16 | + </scm> |
| 17 | + |
| 18 | + <issueManagement> |
| 19 | + <system>GitHub</system> |
| 20 | + <url>https://github.com/comixed/comixed-plugin-language-groovy/issues</url> |
| 21 | + </issueManagement> |
| 22 | + |
| 23 | + <properties> |
| 24 | + <java.version>21</java.version> |
| 25 | + <assembly.name>local</assembly.name> |
| 26 | + <maven-git-code-format.version>5.1</maven-git-code-format.version> |
| 27 | + <sonar.organization>comixed</sonar.organization> |
| 28 | + <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
| 29 | + <sonar.links.scm>https://github.com/comixed/comixed-plugin-language-groovy</sonar.links.scm> |
| 30 | + <sonar.links.issue>https://github.com/comixed/comixed-plugin-language-groovy/issues</sonar.links.issue> |
| 31 | + <sonar.sources>${project.basedir}/src/main/java</sonar.sources> |
| 32 | + <lombok.version>1.18.30</lombok.version> |
| 33 | + <log4j.version>2.20.0</log4j.version> |
| 34 | + </properties> |
| 35 | + |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>org.apache.groovy</groupId> |
| 39 | + <artifactId>groovy-all</artifactId> |
| 40 | + <version>5.0.0</version> |
| 41 | + <type>pom</type> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.comixedproject</groupId> |
| 45 | + <artifactId>comixed-plugins</artifactId> |
| 46 | + <version>3.0.3</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.projectlombok</groupId> |
| 50 | + <artifactId>lombok</artifactId> |
| 51 | + <version>${lombok.version}</version> |
| 52 | + <scope>compile</scope> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.apache.logging.log4j</groupId> |
| 56 | + <artifactId>log4j-api</artifactId> |
| 57 | + <version>${log4j.version}</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.apache.logging.log4j</groupId> |
| 61 | + <artifactId>log4j-core</artifactId> |
| 62 | + <version>${log4j.version}</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>junit</groupId> |
| 66 | + <artifactId>junit</artifactId> |
| 67 | + <version>4.13.2</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>org.mockito</groupId> |
| 72 | + <artifactId>mockito-core</artifactId> |
| 73 | + <version>4.0.0</version> |
| 74 | + <scope>test</scope> |
| 75 | + </dependency> |
| 76 | + </dependencies> |
| 77 | + |
| 78 | + <build> |
| 79 | + <plugins> |
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-compiler-plugin</artifactId> |
| 83 | + <version>3.8.1</version> |
| 84 | + <configuration> |
| 85 | + <source>${java.version}</source> |
| 86 | + <target>${java.version}</target> |
| 87 | + <annotationProcessorPaths> |
| 88 | + <path> |
| 89 | + <groupId>org.projectlombok</groupId> |
| 90 | + <artifactId>lombok</artifactId> |
| 91 | + <version>${lombok.version}</version> |
| 92 | + </path> |
| 93 | + </annotationProcessorPaths> |
| 94 | + </configuration> |
| 95 | + </plugin> |
| 96 | + <plugin> |
| 97 | + <groupId>com.cosium.code</groupId> |
| 98 | + <artifactId>git-code-format-maven-plugin</artifactId> |
| 99 | + <version>${maven-git-code-format.version}</version> |
| 100 | + <executions> |
| 101 | + <execution> |
| 102 | + <id>install-formatter-hook</id> |
| 103 | + <goals> |
| 104 | + <goal>install-hooks</goal> |
| 105 | + </goals> |
| 106 | + </execution> |
| 107 | + <execution> |
| 108 | + <id>validate-code-format</id> |
| 109 | + <goals> |
| 110 | + <goal>validate-code-format</goal> |
| 111 | + </goals> |
| 112 | + </execution> |
| 113 | + </executions> |
| 114 | + <dependencies> |
| 115 | + <dependency> |
| 116 | + <groupId>com.cosium.code</groupId> |
| 117 | + <artifactId>google-java-format</artifactId> |
| 118 | + <version>4.2</version> |
| 119 | + </dependency> |
| 120 | + </dependencies> |
| 121 | + </plugin> |
| 122 | + <plugin> |
| 123 | + <artifactId>maven-clean-plugin</artifactId> |
| 124 | + <version>3.1.0</version> |
| 125 | + <configuration> |
| 126 | + <filesets> |
| 127 | + <fileset> |
| 128 | + <directory>${project.basedir}</directory> |
| 129 | + <includes>CHANGELOG.md</includes> |
| 130 | + <includes>comixed-metadata-comicvine-*.zip</includes> |
| 131 | + </fileset> |
| 132 | + </filesets> |
| 133 | + </configuration> |
| 134 | + </plugin> |
| 135 | + <plugin> |
| 136 | + <artifactId>maven-clean-plugin</artifactId> |
| 137 | + <version>3.1.0</version> |
| 138 | + <configuration> |
| 139 | + <filesets> |
| 140 | + <fileset> |
| 141 | + <directory>${project.basedir}</directory> |
| 142 | + <includes>CHANGELOG.md</includes> |
| 143 | + <includes>comixed-plugin-language-groovy-*.zip</includes> |
| 144 | + </fileset> |
| 145 | + </filesets> |
| 146 | + </configuration> |
| 147 | + </plugin> |
| 148 | + <plugin> |
| 149 | + <groupId>com.github.danielflower.mavenplugins</groupId> |
| 150 | + <artifactId>gitlog-maven-plugin</artifactId> |
| 151 | + <version>1.14.0</version> |
| 152 | + <configuration> |
| 153 | + <reportTitle>Changelog for the ComiXed Groovy Language Plugin v0.1-SNAPSHOT</reportTitle> |
| 154 | + <verbose>false</verbose> |
| 155 | + <outputDirectory>${project.basedir}</outputDirectory> |
| 156 | + <generateMarkdownChangeLog>true</generateMarkdownChangeLog> |
| 157 | + <markdownChangeLogFilename>CHANGELOG.md</markdownChangeLogFilename> |
| 158 | + <generateSimpleHTMLChangeLog>false</generateSimpleHTMLChangeLog> |
| 159 | + <generatePlainTextChangeLog>false</generatePlainTextChangeLog> |
| 160 | + <generateAsciidocChangeLog>false</generateAsciidocChangeLog> |
| 161 | + <generateJSONChangeLog>false</generateJSONChangeLog> |
| 162 | + <generateHTMLTableOnlyChangeLog>false</generateHTMLTableOnlyChangeLog> |
| 163 | + <issueManagementSystem>GitHub issue tracker</issueManagementSystem> |
| 164 | + <issueManagementUrl>https://github.com/comixed/comixed/issues</issueManagementUrl> |
| 165 | + <fullGitMessage>false</fullGitMessage> |
| 166 | + <dateFormat>yyyy-MM-dd HH:mm:ss Z</dateFormat> |
| 167 | + <bugzillaPattern>(?:Bug|UPDATE|FIX|ADD|NEW|#) ?#?(\d+)</bugzillaPattern> |
| 168 | + </configuration> |
| 169 | + <executions> |
| 170 | + <execution> |
| 171 | + <goals> |
| 172 | + <goal>generate</goal> |
| 173 | + </goals> |
| 174 | + </execution> |
| 175 | + </executions> |
| 176 | + </plugin> |
| 177 | + <plugin> |
| 178 | + <groupId>org.sonarsource.scanner.maven</groupId> |
| 179 | + <artifactId>sonar-maven-plugin</artifactId> |
| 180 | + <version>4.0.0.4121</version> |
| 181 | + </plugin> |
| 182 | + <plugin> |
| 183 | + <artifactId>maven-assembly-plugin</artifactId> |
| 184 | + <version>3.2.0</version> |
| 185 | + <configuration> |
| 186 | + <outputDirectory>${project.basedir}</outputDirectory> |
| 187 | + <descriptors> |
| 188 | + <descriptor>src/main/assembly/src.xml</descriptor> |
| 189 | + </descriptors> |
| 190 | + </configuration> |
| 191 | + <executions> |
| 192 | + <execution> |
| 193 | + <id>make-assembly</id> |
| 194 | + <phase>package</phase> |
| 195 | + <goals> |
| 196 | + <goal>single</goal> |
| 197 | + </goals> |
| 198 | + </execution> |
| 199 | + </executions> |
| 200 | + </plugin> |
| 201 | + </plugins> |
| 202 | + </build> |
| 203 | +</project> |
0 commit comments