| 
6 | 6 | 
 
  | 
7 | 7 |     <packaging>jar</packaging>  | 
8 | 8 |     <name>assigning-mark</name>  | 
9 |  | -    <groupId>cn.rocket</groupId>  | 
 | 9 | +    <groupId>io.github.rocketmadev</groupId>  | 
10 | 10 |     <artifactId>AssignMark</artifactId>  | 
11 |  | -    <version>0.9.8-SNAPSHOT</version>  | 
 | 11 | +    <version>1.0.8</version>  | 
12 | 12 |     <inceptionYear>2021</inceptionYear>  | 
13 | 13 | 
 
  | 
14 | 14 |     <licenses>  | 
 | 
19 | 19 |         </license>  | 
20 | 20 |     </licenses>  | 
21 | 21 | 
 
  | 
22 |  | -    <!--Undone here!!!!TODO-->  | 
23 | 22 |     <scm>  | 
24 | 23 |         <tag>maven</tag>  | 
25 |  | -        <url>git@gitee.com:centy/xxl-job-spring-boot-starter.git</url>  | 
26 |  | -        <connection>scm:git:git@gitee.com:centy/xxl-job-spring-boot-starter.git</connection>  | 
27 |  | -        <developerConnection>scm:git:git@gitee.com:centy/xxl-job-spring-boot-starter.git</developerConnection>  | 
 | 24 | +        <url>git@github.com:RocketMaDev/AssignMark.git</url>  | 
 | 25 | +        <connection>scm:git:git@github.com:RocketMaDev/AssignMark.git</connection>  | 
 | 26 | +        <developerConnection>scm:git:git@github.com:RocketMaDev/AssignMark.git</developerConnection>  | 
28 | 27 |     </scm>  | 
29 | 28 | 
 
  | 
30 | 29 |     <developers>  | 
 | 
94 | 93 |         <maven.compiler.target>8</maven.compiler.target>  | 
95 | 94 |     </properties>  | 
96 | 95 | 
 
  | 
 | 96 | +    <profiles>  | 
 | 97 | +        <profile>  | 
 | 98 | +            <id>release</id>  | 
 | 99 | +            <build>  | 
 | 100 | +                <plugins>  | 
 | 101 | +                    <plugin>  | 
 | 102 | +                        <groupId>org.apache.maven.plugins</groupId>  | 
 | 103 | +                        <artifactId>maven-jar-plugin</artifactId>  | 
 | 104 | +                        <executions>  | 
 | 105 | +                            <execution>  | 
 | 106 | +                                <goals>  | 
 | 107 | +                                    <goal>jar</goal>  | 
 | 108 | +                                    <goal>test-jar</goal>  | 
 | 109 | +                                </goals>  | 
 | 110 | +                            </execution>  | 
 | 111 | +                        </executions>  | 
 | 112 | +                    </plugin>  | 
 | 113 | +                    <plugin>  | 
 | 114 | +                        <groupId>org.apache.maven.plugins</groupId>  | 
 | 115 | +                        <artifactId>maven-source-plugin</artifactId>  | 
 | 116 | +                        <executions>  | 
 | 117 | +                            <execution>  | 
 | 118 | +                                <id>attach-sources</id>  | 
 | 119 | +                                <goals>  | 
 | 120 | +                                    <goal>jar-no-fork</goal>  | 
 | 121 | +                                </goals>  | 
 | 122 | +                            </execution>  | 
 | 123 | +                        </executions>  | 
 | 124 | +                    </plugin>  | 
 | 125 | +                    <plugin>  | 
 | 126 | +                        <groupId>org.apache.maven.plugins</groupId>  | 
 | 127 | +                        <artifactId>maven-javadoc-plugin</artifactId>  | 
 | 128 | +                        <executions>  | 
 | 129 | +                            <execution>  | 
 | 130 | +                                <id>attach-javadocs</id>  | 
 | 131 | +                                <goals>  | 
 | 132 | +                                    <goal>jar</goal>  | 
 | 133 | +                                </goals>  | 
 | 134 | +                                <configuration>  | 
 | 135 | +                                    <additionalOption>  | 
 | 136 | +                                        <additionalOption>-Xdoclint:none</additionalOption>  | 
 | 137 | +                                    </additionalOption>  | 
 | 138 | +                                </configuration>  | 
 | 139 | +                            </execution>  | 
 | 140 | +                        </executions>  | 
 | 141 | +                    </plugin>  | 
 | 142 | +                    <plugin>  | 
 | 143 | +                        <groupId>org.apache.maven.plugins</groupId>  | 
 | 144 | +                        <artifactId>maven-gpg-plugin</artifactId>  | 
 | 145 | +                        <executions>  | 
 | 146 | +                            <execution>  | 
 | 147 | +                                <id>sign-artifacts</id>  | 
 | 148 | +                                <phase>verify</phase>  | 
 | 149 | +                                <goals>  | 
 | 150 | +                                    <goal>sign</goal>  | 
 | 151 | +                                </goals>  | 
 | 152 | +                            </execution>  | 
 | 153 | +                        </executions>  | 
 | 154 | +                    </plugin>  | 
 | 155 | +                    <plugin>  | 
 | 156 | +                        <groupId>org.sonatype.plugins</groupId>  | 
 | 157 | +                        <artifactId>nexus-staging-maven-plugin</artifactId>  | 
 | 158 | +                        <version>1.6.3</version>  | 
 | 159 | +                        <extensions>true</extensions>  | 
 | 160 | +                        <configuration>  | 
 | 161 | +                            <serverId>ossrh</serverId>  | 
 | 162 | +                            <nexusUrl>https://oss.sonatype.org/</nexusUrl>  | 
 | 163 | +                            <autoReleaseAfterClose>true</autoReleaseAfterClose>  | 
 | 164 | +                        </configuration>  | 
 | 165 | +                    </plugin>  | 
 | 166 | +                </plugins>  | 
 | 167 | +            </build>  | 
 | 168 | +            <distributionManagement>  | 
 | 169 | +                <snapshotRepository>  | 
 | 170 | +                    <id>sonatype-nexus-snapshots</id>  | 
 | 171 | +                    <name>Sonatype Nexus Snapshots</name>  | 
 | 172 | +                    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>  | 
 | 173 | +                </snapshotRepository>  | 
 | 174 | +                <repository>  | 
 | 175 | +                    <id>sonatype-nexus-staging</id>  | 
 | 176 | +                    <name>Nexus Release Repository</name>  | 
 | 177 | +                    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>  | 
 | 178 | +                </repository>  | 
 | 179 | +            </distributionManagement>  | 
 | 180 | +        </profile>  | 
 | 181 | +    </profiles>  | 
 | 182 | + | 
97 | 183 |     <build>  | 
98 | 184 |         <resources>  | 
99 | 185 |             <resource>  | 
 | 
0 commit comments