|
6 | 6 |
|
7 | 7 | <groupId>io.github.wilburhimself</groupId> |
8 | 8 | <artifactId>theory</artifactId> |
9 | | - <version>1.0-SNAPSHOT</version> |
| 9 | + <version>0.1.0</version> |
| 10 | + |
| 11 | + <name>Theory (Java)</name> |
| 12 | + <description>Pragmatic, annotation-driven data access library built on Spring JDBC.</description> |
| 13 | + <url>https://github.com/wilburhimself/theory_java</url> |
| 14 | + |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>MIT License</name> |
| 18 | + <url>https://opensource.org/licenses/MIT</url> |
| 19 | + <distribution>repo</distribution> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>wilburhimself</id> |
| 26 | + <name>Wilbur Suero</name> |
| 27 | + <url>https://github.com/wilburhimself</url> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
| 31 | + <scm> |
| 32 | + <url>https://github.com/wilburhimself/theory_java</url> |
| 33 | + <connection>scm:git:https://github.com/wilburhimself/theory_java.git</connection> |
| 34 | + <developerConnection>scm:git:ssh://git@github.com/wilburhimself/theory_java.git</developerConnection> |
| 35 | + <tag>HEAD</tag> |
| 36 | + </scm> |
| 37 | + |
| 38 | + <properties> |
| 39 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 40 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 41 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 42 | + </properties> |
10 | 43 |
|
11 | 44 | <pluginRepositories> |
12 | 45 | <pluginRepository> |
|
31 | 64 | <scope>import</scope> |
32 | 65 | </dependency> |
33 | 66 | </dependencies> |
| 67 | + |
| 68 | + <build> |
| 69 | + <plugins> |
| 70 | + <!-- Attach sources.jar --> |
| 71 | + <plugin> |
| 72 | + <groupId>org.apache.maven.plugins</groupId> |
| 73 | + <artifactId>maven-source-plugin</artifactId> |
| 74 | + <version>3.3.0</version> |
| 75 | + <executions> |
| 76 | + <execution> |
| 77 | + <id>attach-sources</id> |
| 78 | + <goals> |
| 79 | + <goal>jar-no-fork</goal> |
| 80 | + </goals> |
| 81 | + </execution> |
| 82 | + </executions> |
| 83 | + </plugin> |
| 84 | + |
| 85 | + <!-- Attach javadoc.jar --> |
| 86 | + <plugin> |
| 87 | + <groupId>org.apache.maven.plugins</groupId> |
| 88 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 89 | + <version>3.6.3</version> |
| 90 | + <executions> |
| 91 | + <execution> |
| 92 | + <id>attach-javadocs</id> |
| 93 | + <goals> |
| 94 | + <goal>jar</goal> |
| 95 | + </goals> |
| 96 | + <configuration> |
| 97 | + <source>8</source> |
| 98 | + <failOnError>false</failOnError> |
| 99 | + </configuration> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + |
| 104 | + <!-- Sonatype Central Publishing (new portal) --> |
| 105 | + <plugin> |
| 106 | + <groupId>org.sonatype.central</groupId> |
| 107 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 108 | + <version>0.5.0</version> |
| 109 | + <extensions>true</extensions> |
| 110 | + <configuration> |
| 111 | + <publishingServerId>central</publishingServerId> |
| 112 | + </configuration> |
| 113 | + </plugin> |
| 114 | + </plugins> |
| 115 | + </build> |
| 116 | + |
| 117 | + <profiles> |
| 118 | + <profile> |
| 119 | + <id>release</id> |
| 120 | + <build> |
| 121 | + <plugins> |
| 122 | + <!-- Sign artifacts in verify phase --> |
| 123 | + <plugin> |
| 124 | + <groupId>org.apache.maven.plugins</groupId> |
| 125 | + <artifactId>maven-gpg-plugin</artifactId> |
| 126 | + <version>3.2.4</version> |
| 127 | + <executions> |
| 128 | + <execution> |
| 129 | + <id>sign-artifacts</id> |
| 130 | + <phase>verify</phase> |
| 131 | + <goals> |
| 132 | + <goal>sign</goal> |
| 133 | + </goals> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
| 137 | + </plugins> |
| 138 | + </build> |
| 139 | + </profile> |
| 140 | + </profiles> |
34 | 141 | </dependencyManagement> |
35 | 142 |
|
36 | 143 | <dependencies> |
|
0 commit comments