Unverified Commit 14029f97 authored by Yang Libin's avatar Yang Libin Committed by GitHub

fix: ignore resource file (#24)

parent a45bf965
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<groupId>io.github.doocs</groupId> <groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId> <artifactId>im-server-sdk-java</artifactId>
<version>0.0.1</version> <version>0.0.2</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>qcloud-im-server-sdk-java</name> <name>qcloud-im-server-sdk-java</name>
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
<developer> <developer>
<id>yanglbme</id> <id>yanglbme</id>
<name>yanglbme</name> <name>yanglbme</name>
<email>contact@yanglibin</email> <email>contact@yanglibin.info</email>
<url>https://github.com/yanglbme</url> <url>https://github.com/yanglbme</url>
</developer> </developer>
<developer> <developer>
<id>honyiheng</id> <id>hongyiheng</id>
<name>honyiheng</name> <name>hongyiheng</name>
<email>hongyihengg@gmail.com</email> <email>hongyihengg@gmail.com</email>
<url>https://github.com/hongyiheng</url> <url>https://github.com/hongyiheng</url>
</developer> </developer>
...@@ -146,6 +146,25 @@ ...@@ -146,6 +146,25 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<excludes>
<exclude>**/app.properties</exclude>
</excludes>
</configuration>
</plugin>
</plugins> </plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>*</exclude>
</excludes>
</resource>
</resources>
</build> </build>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment