|
4 | 4 | <groupId>io.github.makingthematrix</groupId>
|
5 | 5 | <artifactId>scala-suffix-maven-plugin</artifactId>
|
6 | 6 | <packaging>maven-plugin</packaging>
|
7 |
| - <version>0.0.3</version> |
| 7 | + <version>0.1.0</version> |
8 | 8 | <name>Scala SufFix Maven Plugin</name>
|
9 | 9 | <url>https://github.com/makingthematrix/scala-suffix</url>
|
10 | 10 | <organization>
|
11 | 11 | <name>makingthematrix</name>
|
12 | 12 | <url>https://github.com/makingthematrix</url>
|
13 | 13 | </organization>
|
14 | 14 |
|
| 15 | + <!-- --> |
| 16 | + <description>Fixes Scala dependencies incompatible with Java 9+.</description> |
| 17 | + |
| 18 | + <scm> |
| 19 | + <connection>scm:git:https://github.com/makingthematrix/scala-suffix.git</connection> |
| 20 | + <developerConnection>scm:git:https://github.com/makingthematrix/scala-suffix.git</developerConnection> |
| 21 | + <url>https://github.com/github.com/makingthematrix/scala-suffix</url> |
| 22 | + <tag>scala-suffix</tag> |
| 23 | + </scm> |
| 24 | + |
| 25 | + <issueManagement> |
| 26 | + <system>GitHub</system> |
| 27 | + <url>https://github.com/makingthematrix/scala-suffix/issues</url> |
| 28 | + </issueManagement> |
| 29 | + |
| 30 | + <developers> |
| 31 | + <developer> |
| 32 | + <id>makingthematrix</id> |
| 33 | + <name>Maciej Gorywoda</name> |
| 34 | + |
| 35 | + <url>https://github.com/makingthematrix</url> |
| 36 | + <organization>makingthematrix</organization> |
| 37 | + <organizationUrl>https://github.com/makingthematrix</organizationUrl> |
| 38 | + <roles> |
| 39 | + <role>developer</role> |
| 40 | + </roles> |
| 41 | + <timezone>Europe/Berlin</timezone> |
| 42 | + <properties> |
| 43 | + <picUrl>https://avatars.githubusercontent.com/u/4498008?v=4</picUrl> |
| 44 | + </properties> |
| 45 | + </developer> |
| 46 | + </developers> |
| 47 | + |
| 48 | + <!-- --> |
| 49 | + |
15 | 50 | <properties>
|
16 | 51 | <maven-compiler-plugin-version>3.8.1</maven-compiler-plugin-version>
|
17 | 52 | <maven.compiler.source>11</maven.compiler.source>
|
18 | 53 | <maven.compiler.target>11</maven.compiler.target>
|
19 | 54 | </properties>
|
20 | 55 |
|
| 56 | + <distributionManagement> |
| 57 | + <snapshotRepository> |
| 58 | + <id>ossrh</id> |
| 59 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 60 | + </snapshotRepository> |
| 61 | + </distributionManagement> |
| 62 | + |
| 63 | + <licenses> |
| 64 | + <license> |
| 65 | + <name>Apache License, Version 2.0</name> |
| 66 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 67 | + <distribution>repo</distribution> |
| 68 | + <comments>A business-friendly OSS license</comments> |
| 69 | + </license> |
| 70 | + </licenses> |
| 71 | + |
21 | 72 | <build>
|
22 | 73 | <plugins>
|
| 74 | + <plugin> |
| 75 | + <groupId>org.sonatype.plugins</groupId> |
| 76 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 77 | + <version>1.6.7</version> |
| 78 | + <extensions>true</extensions> |
| 79 | + <configuration> |
| 80 | + <serverId>ossrh</serverId> |
| 81 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 82 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 83 | + </configuration> |
| 84 | + </plugin> |
23 | 85 | <plugin>
|
24 | 86 | <groupId>org.apache.maven.plugins</groupId>
|
25 | 87 | <artifactId>maven-compiler-plugin</artifactId>
|
26 | 88 | <version>${maven-compiler-plugin-version}</version>
|
27 | 89 | </plugin>
|
| 90 | + <plugin> |
| 91 | + <groupId>org.apache.maven.plugins</groupId> |
| 92 | + <artifactId>maven-source-plugin</artifactId> |
| 93 | + <version>3.2.1</version> |
| 94 | + <executions> |
| 95 | + <execution> |
| 96 | + <id>attach-sources</id> |
| 97 | + <goals> |
| 98 | + <goal>jar-no-fork</goal> |
| 99 | + </goals> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + <plugin> |
| 104 | + <groupId>org.apache.maven.plugins</groupId> |
| 105 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 106 | + <version>3.0.1</version> |
| 107 | + <executions> |
| 108 | + <execution> |
| 109 | + <id>attach-javadocs</id> |
| 110 | + <goals> |
| 111 | + <goal>jar</goal> |
| 112 | + </goals> |
| 113 | + </execution> |
| 114 | + </executions> |
| 115 | + </plugin> |
28 | 116 | <plugin>
|
29 | 117 | <groupId>org.apache.maven.plugins</groupId>
|
30 | 118 | <artifactId>maven-plugin-plugin</artifactId>
|
31 | 119 | <version>3.6.1</version>
|
32 | 120 | </plugin>
|
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-gpg-plugin</artifactId> |
| 124 | + <version>1.5</version> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <id>sign-artifacts</id> |
| 128 | + <phase>verify</phase> |
| 129 | + <goals> |
| 130 | + <goal>sign</goal> |
| 131 | + </goals> |
| 132 | + </execution> |
| 133 | + </executions> |
| 134 | + </plugin> |
33 | 135 | </plugins>
|
| 136 | + |
34 | 137 | <defaultGoal>suffix</defaultGoal>
|
35 | 138 | </build>
|
36 | 139 |
|
|
0 commit comments