Skip to content
This repository has been archived by the owner on May 14, 2022. It is now read-only.

Commit

Permalink
支持库 v1.1.0 更新: 包名调整
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonLake committed Nov 26, 2017
1 parent 02cdc91 commit e239a99
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 5 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>com.minecraft.moonlake</groupId>
<groupId>com.mcmoonlake</groupId>
<artifactId>Validate</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<version>1.1.0</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand All @@ -32,7 +32,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -41,15 +41,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<version>3.0.2</version>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -66,7 +66,6 @@
<directory>src/main/resources/</directory>
<filtering>true</filtering>
</resource>
<!-- 这个支持库暂时不需要这些资源打包在一起
<resource>
<directory>${project.basedir}/</directory>
<includes>
Expand All @@ -75,7 +74,6 @@
</includes>
<filtering>true</filtering>
</resource>
-->
</resources>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/


package com.minecraft.moonlake.validate;
package com.mcmoonlake.validate;

import java.util.Collection;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
*/


package com.minecraft.moonlake.validate.test;
package com.mcmoonlake.validate.test;

import com.minecraft.moonlake.validate.Validate;
import com.mcmoonlake.validate.Validate;
import org.junit.Test;

public class ValidateTest {
Expand Down

0 comments on commit e239a99

Please sign in to comment.