NutzCN Logo
问答 nutz用命令打包报错
发布于 1902天前 作者 fabienfay 1592 次浏览 复制 上一个帖子 下一个帖子
标签:

D:\che\ProjectChatRoom\源码\LuliChat-nutzboot>mvn clean package nutzboot:shade
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.219 s
[INFO] Finished at: 2019-01-02T17:57:30+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (D:\chenbozhong\ProjectChatRoom\源码\LuliChat-nutzboot). Please verify you invoke
d Maven from the correct directory. -> [Help 1] [ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException

29 回复

没有pom.xml?

这个目录下是什么内容?

D:\che\ProjectChatRoom\源码\LuliChat-nutzboot

有pom.xml吗?


<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"

4.0.0
com.dd
LuliChat
jar
1.0-SNAPSHOT
LuliChat Maven Webapp
http://maven.apache.org


<nutzboot.version>2.2.3</nutzboot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>1.7.25</slf4j.version>




org.nutz
nutzboot-parent
${nutzboot.version}
pom
import




org.nutz
nutzboot-starter-nutz-mvc


org.nutz
nutzboot-starter-jdbc


org.nutz
nutzboot-starter-nutz-dao


org.nutz
nutzboot-starter-jetty


org.slf4j
slf4j-log4j12


org.nutz
nutzboot-starter-freemarker

<dependency>
  <groupId>org.nutz</groupId>
  <artifactId>nutzboot-starter-shiro</artifactId>
</dependency>
<!-- mysql驱动 -->
<!--<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>5.1.44</version>
</dependency>-->
<dependency>
  <groupId>org.t-io</groupId>
  <artifactId>tio-websocket-server</artifactId>
  <version>3.1.4.v20180726-RELEASE</version>
</dependency>

<dependency>
  <groupId>com.aliyun.oss</groupId>
  <artifactId>aliyun-sdk-oss</artifactId>
  <version>2.8.2</version>
</dependency>
<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.12</version>
  <scope>test</scope>
</dependency>


<dependency>
  <groupId>org.nutz</groupId>
  <artifactId>nutz-plugins-mock</artifactId>
  <version>1.r.60</version>
  <scope>test</scope>
</dependency>

<dependency>
  <groupId>com.mchange</groupId>
  <artifactId>c3p0</artifactId>
  <version>0.9.5.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.nutz/nutzboot-starter-test-junit4 -->
<dependency>
  <groupId>org.nutz</groupId>
  <artifactId>nutzboot-starter-test-junit4</artifactId>
  <version>2.2.8</version>
</dependency>

<dependency>
  <groupId>com.microsoft.sqlserver</groupId>
  <artifactId>sqljdbc4</artifactId>
  <version>4.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->



lulichat


maven-compiler-plugin
3.3

1.8
1.8

-parameters

false

  </plugin>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>3.0.0</version>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>shade</goal>
        </goals>
        <configuration>
          <transformers>
            <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
            <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
              <resource>META-INF/nutz/org.nutz.boot.starter.NbStarter</resource>
            </transformer>
            <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
              <mainClass>com.dd.MainLauncher</mainClass>
            </transformer>
          </transformers>
        </configuration>
      </execution>
    </executions>
  </plugin>

       <plugin>
         <groupId>org.nutz.boot</groupId>
         <artifactId>nutzboot-maven-plugin</artifactId>
         <version>${nutzboot.version}</version>
         <configuration>
          <repoUser>TopCoderMyDream</repoUser>
          <repoUrl>http://appstore.nutz.io/repo</repoUrl>
         </configuration>
       </plugin>
</plugins>



jdk-1.8


true
1.8


<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>




nutz
http://jfrog.nutz.cn/artifactory/libs-release

false



nutz-snapshots
http://jfrog.nutz.cn/artifactory/snapshots

true
always


false



```

这个pom.xml的完整路径是什么

D:\che\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\pom.xml

这路径不还是错的嘛。。😤

The goal you specified requires a project to execute but there is no POM in this directory (D:\chenbozhong\ProjectChatRoom\源码\LuliChat-nutzboot).

跟你说的路径不一样呀

往下一层才是pom.xml所在路径

cd D:\che\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot

然后再:

mvn clean package nutzboot:shade

还是有错
D:\ProjectChatRoom\源码\LuliChat-nutzboot>cd LuliChat-nutzboot

D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot>mvn clean package nutzboot:shade
[INFO] Scanning for projects...
[INFO] [INFO] --------------------------< com.dd:LuliChat >---------------------------
[INFO] Building LuliChat Maven Webapp 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 2.0 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-daocache/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-daocache/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 6.5 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutzmore/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutzmore/1.r.67-SNAPSHOT/maven-metadata.xml (597 B at 3.2 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-websocket/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-websocket/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 6.0 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-shiro/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-shiro/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 6.0 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-cache/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-cache/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 5.5 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-jedis/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-jedis/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 3.7 kB/s)
[INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ LuliChat ---
[INFO] Deleting D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.845 s
[INFO] Finished at: 2019-01-03T10:24:57+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean) on project LuliChat: Failed to clean project: Failed to delete D:\ProjectChatRo
om\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\classes\ehcache.xml -> [Help 1] [ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

用插入源码按钮啊!

你的项目还启动着,文件删不掉呢

 to delete D:\ProjectChatRo
om\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\classes\ehcache.xml

[ERROR] Failed to execute goal org.nutz.boot:nutzboot-maven-plugin:2.2.3:shade (default-cli) on project LuliChat: Error creating shaded jar: Invalid signature file digest for Manif
est main attributes -> [Help 1] [ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

用插入源码按钮啊!

这个我没有听懂

"回复"按钮旁边就是"插入代码或日志片段"按钮呀

Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

D:\ProjectChatRoom\源码\LuliChat-nutzboot>cd LuliChat-nutzboot

D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot>mvn clean package nutzboot:shade
[INFO] Scanning for projects...
[INFO] [INFO] --------------------------< com.dd:LuliChat >---------------------------
[INFO] Building LuliChat Maven Webapp 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 2.0 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-daocache/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-daocache/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 6.0 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutzmore/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutzmore/1.r.67-SNAPSHOT/maven-metadata.xml (597 B at 2.7 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-websocket/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-websocket/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 4.1 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-shiro/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-shiro/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 4.1 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-cache/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-cache/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 5.6 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-jedis/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-jedis/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 5.6 kB/s)
[INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ LuliChat ---
[INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ LuliChat ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 172 resources
[INFO] [INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ LuliChat ---
[INFO] Compiling 46 source files to D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\classes
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/filter/AuthenticationFilter.java: D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzbo
ot\src\main\java\com\dd\filter\AuthenticationFilter.java使用或覆盖了已过时的 API。
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/filter/AuthenticationFilter.java: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/context/SessionContext.java: 某些输入文件使用了未经检查或不安全的操作。
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/context/SessionContext.java: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
[INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ LuliChat ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\src\test\resources
[INFO] [INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ LuliChat ---
[INFO] No sources to compile
[INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ LuliChat ---
[INFO] No tests to run.
[INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ LuliChat ---
[INFO] Building jar: D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\lulichat.jar
[INFO] [INFO] --- maven-shade-plugin:3.0.0:shade (default) @ LuliChat ---
[INFO] Including org.nutz:nutzboot-starter-nutz-mvc:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutzboot-core:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jdbc:jar:2.2.3 in the shaded jar.
[INFO] Including com.alibaba:druid:jar:1.1.10 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-nutz-dao:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-daocache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jetty:jar:2.2.3 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-webapp:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-xml:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-common:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-api:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-server-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-annotations:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-plus:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.ow2.asm:asm-commons:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-tree:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-analysis:jar:6.1.1 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-client-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-client-api:jar:1.0 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-api:jar:1.0 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-websocket:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-servlet3:jar:2.2.3 in the shaded jar.
[INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar.
[INFO] Including org.ow2.asm:asm:jar:6.1.1 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.25 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.25 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-freemarker:jar:2.2.3 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.28 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-shiro:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-integration-shiro:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-web:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-core:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-ehcache:jar:1.3.2 in the shaded jar.
[INFO] Including net.sf.ehcache:ehcache:jar:2.10.4 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-cache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutz-integration-jedis:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including com.microsoft.sqlserver:sqljdbc4:jar:4.0 in the shaded jar.
[INFO] Including org.t-io:tio-websocket-server:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-websocket-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-http-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-core:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-utils:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.apache.commons:commons-collections4:jar:4.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.7 in the shaded jar.
[INFO] Including org.apache.commons:commons-text:jar:1.4 in the shaded jar.
[INFO] Including cn.hutool:hutool-all:jar:4.1.2 in the shaded jar.
[INFO] Including com.alibaba:fastjson:jar:1.2.47 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:25.1-jre in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.2 in the shaded jar.
[INFO] Including org.checkerframework:checker-qual:jar:2.0.0 in the shaded jar.
[INFO] Including com.google.errorprone:error_prone_annotations:jar:2.1.3 in the shaded jar.
[INFO] Including com.google.j2objc:j2objc-annotations:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.mojo:animal-sniffer-annotations:jar:1.14 in the shaded jar.
[INFO] Including com.github.ben-manes.caffeine:caffeine:jar:2.6.2 in the shaded jar.
[INFO] Including org.jodd:jodd-core:jar:5.0.3 in the shaded jar.
[INFO] Including org.redisson:redisson:jar:3.7.3 in the shaded jar.
[INFO] Including io.netty:netty-common:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-buffer:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-transport:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-handler:jar:4.1.25.Final in the shaded jar.
[INFO] Including javax.cache:cache-api:jar:1.0.0 in the shaded jar.
[INFO] Including io.projectreactor:reactor-core:jar:3.1.7.RELEASE in the shaded jar.
[INFO] Including org.reactivestreams:reactive-streams:jar:1.0.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.7.9 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.15 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.7.9 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.7.9.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.7.0 in the shaded jar.
[INFO] Including net.bytebuddy:byte-buddy:jar:1.8.11 in the shaded jar.
[INFO] Including org.jodd:jodd-bean:jar:3.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.11 in the shaded jar.
[INFO] Including org.t-io:tio-http-server:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including io.github.lukehutch:fast-classpath-scanner:jar:3.1.10 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.8 in the shaded jar.
[INFO] Including com.esotericsoftware:reflectasm:jar:1.11.7 in the shaded jar.
[INFO] Including com.aliyun.oss:aliyun-sdk-oss:jar:2.8.2 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpclient:jar:4.4.1 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpcore:jar:4.4.1 in the shaded jar.
[INFO] Including commons-logging:commons-logging:jar:1.2 in the shaded jar.
[INFO] Including org.jdom:jdom:jar:1.1 in the shaded jar.
[INFO] Including net.sf.json-lib:json-lib:jar:jdk15:2.4 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.8.0 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.5 in the shaded jar.
[INFO] Including net.sf.ezmorph:ezmorph:jar:1.0.6 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-test-junit4:jar:2.2.8 in the shaded jar.
[WARNING] asm-commons-6.1.1.jar, asm-analysis-6.1.1.jar, asm-tree-6.1.1.jar, asm-6.1.1.jar, fast-classpath-scanner-3.1.10.jar define 1 overlapping classes:
[WARNING] - module-info
[WARNING] javax.websocket-api-1.0.jar, javax.websocket-client-api-1.0.jar define 45 overlapping classes:
[WARNING] - javax.websocket.Decoder$Text
[WARNING] - javax.websocket.DeploymentException
[WARNING] - javax.websocket.SendHandler
[WARNING] - javax.websocket.ClientEndpointConfig
[WARNING] - javax.websocket.SendResult
[WARNING] - javax.websocket.Extension
[WARNING] - javax.websocket.ClientEndpointConfig$Builder
[WARNING] - javax.websocket.OnError
[WARNING] - javax.websocket.PongMessage
[WARNING] - javax.websocket.Decoder
[WARNING] - 35 more...
[WARNING] jcl-over-slf4j-1.7.25.jar, commons-logging-1.2.jar define 6 overlapping classes:
[WARNING] - org.apache.commons.logging.impl.SimpleLog$1
[WARNING] - org.apache.commons.logging.Log
[WARNING] - org.apache.commons.logging.impl.SimpleLog
[WARNING] - org.apache.commons.logging.LogConfigurationException
[WARNING] - org.apache.commons.logging.impl.NoOpLog
[WARNING] - org.apache.commons.logging.LogFactory
[WARNING] commons-collections-3.2.1.jar, commons-beanutils-1.8.0.jar define 10 overlapping classes:
[WARNING] - org.apache.commons.collections.FastHashMap$EntrySet
[WARNING] - org.apache.commons.collections.FastHashMap$KeySet
[WARNING] - org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator
[WARNING] - org.apache.commons.collections.ArrayStack
[WARNING] - org.apache.commons.collections.FastHashMap$Values
[WARNING] - org.apache.commons.collections.FastHashMap$CollectionView
[WARNING] - org.apache.commons.collections.FastHashMap$1
[WARNING] - org.apache.commons.collections.Buffer
[WARNING] - org.apache.commons.collections.FastHashMap
[WARNING] - org.apache.commons.collections.BufferUnderflowException
[WARNING] nutzboot-core-2.2.3.jar, nutz-1.r.67-SNAPSHOT.jar define 3 overlapping classes:
[WARNING] - org.nutz.log.impl.Slf4jLogAdapter
[WARNING] - org.nutz.log.impl.Slf4jLogAdapter$SimpleSlf4jLogger
[WARNING] - org.nutz.log.impl.Slf4jLogger
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\lulichat.jar with D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\LuliChat-1.
0-SNAPSHOT-shaded.jar
[INFO] Dependency-reduced POM written at: D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\dependency-reduced-pom.xml
[INFO] [INFO] --- nutzboot-maven-plugin:2.2.3:shade (default-cli) @ LuliChat ---
[INFO] Including org.nutz:nutzboot-starter-nutz-mvc:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutzboot-core:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jdbc:jar:2.2.3 in the shaded jar.
[INFO] Including com.alibaba:druid:jar:1.1.10 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-nutz-dao:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-daocache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jetty:jar:2.2.3 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-webapp:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-xml:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-common:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-api:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-server-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-annotations:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-plus:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.ow2.asm:asm-commons:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-tree:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-analysis:jar:6.1.1 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-client-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-client-api:jar:1.0 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-api:jar:1.0 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-websocket:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-servlet3:jar:2.2.3 in the shaded jar.
[INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar.
[INFO] Including org.ow2.asm:asm:jar:6.1.1 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.25 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.25 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-freemarker:jar:2.2.3 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.28 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-shiro:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-integration-shiro:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-web:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-core:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-ehcache:jar:1.3.2 in the shaded jar.
[INFO] Including net.sf.ehcache:ehcache:jar:2.10.4 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-cache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutz-integration-jedis:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including com.microsoft.sqlserver:sqljdbc4:jar:4.0 in the shaded jar.
[INFO] Including org.t-io:tio-websocket-server:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-websocket-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-http-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-core:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-utils:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.apache.commons:commons-collections4:jar:4.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.7 in the shaded jar.
[INFO] Including org.apache.commons:commons-text:jar:1.4 in the shaded jar.
[INFO] Including cn.hutool:hutool-all:jar:4.1.2 in the shaded jar.
[INFO] Including com.alibaba:fastjson:jar:1.2.47 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:25.1-jre in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.2 in the shaded jar.
[INFO] Including org.checkerframework:checker-qual:jar:2.0.0 in the shaded jar.
[INFO] Including com.google.errorprone:error_prone_annotations:jar:2.1.3 in the shaded jar.
[INFO] Including com.google.j2objc:j2objc-annotations:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.mojo:animal-sniffer-annotations:jar:1.14 in the shaded jar.
[INFO] Including com.github.ben-manes.caffeine:caffeine:jar:2.6.2 in the shaded jar.
[INFO] Including org.jodd:jodd-core:jar:5.0.3 in the shaded jar.
[INFO] Including org.redisson:redisson:jar:3.7.3 in the shaded jar.
[INFO] Including io.netty:netty-common:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-buffer:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-transport:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-handler:jar:4.1.25.Final in the shaded jar.
[INFO] Including javax.cache:cache-api:jar:1.0.0 in the shaded jar.
[INFO] Including io.projectreactor:reactor-core:jar:3.1.7.RELEASE in the shaded jar.
[INFO] Including org.reactivestreams:reactive-streams:jar:1.0.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.7.9 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.15 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.7.9 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.7.9.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.7.0 in the shaded jar.
[INFO] Including net.bytebuddy:byte-buddy:jar:1.8.11 in the shaded jar.
[INFO] Including org.jodd:jodd-bean:jar:3.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.11 in the shaded jar.
[INFO] Including org.t-io:tio-http-server:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including io.github.lukehutch:fast-classpath-scanner:jar:3.1.10 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.8 in the shaded jar.
[INFO] Including com.esotericsoftware:reflectasm:jar:1.11.7 in the shaded jar.
[INFO] Including com.aliyun.oss:aliyun-sdk-oss:jar:2.8.2 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpclient:jar:4.4.1 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpcore:jar:4.4.1 in the shaded jar.
[INFO] Including commons-logging:commons-logging:jar:1.2 in the shaded jar.
[INFO] Including org.jdom:jdom:jar:1.1 in the shaded jar.
[INFO] Including net.sf.json-lib:json-lib:jar:jdk15:2.4 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.8.0 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.5 in the shaded jar.
[INFO] Including net.sf.ezmorph:ezmorph:jar:1.0.6 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-test-junit4:jar:2.2.8 in the shaded jar.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 48.900 s
[INFO] Finished at: 2019-01-03T11:11:59+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.nutz.boot:nutzboot-maven-plugin:2.2.3:shade (default-cli) on project LuliChat: Error creating shaded jar: Invalid signature file digest for Manif
est main attributes -> [Help 1] [ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

```

有jar文件损坏了, 把~/.m2 删掉,重新下载吧

我用的是下载的maven仓库没有用自带的
D:/apache-maven-3.5.3-bin/apache-maven-3.5.3

这跟是不是自带没有关系. 不晓得 ~/.m2的含义?

~/.m2我也删了

重新跑一下打包

是这个错吗

org.nutz.boot
nutzboot-maven-plugin
${nutzboot.version}

TopCoderMyDream
http://appstore.nutz.io/repo

... 依然不会用插入代码,哎...

<plugin>
				<groupId>org.nutz.boot</groupId>
				<artifactId>nutzboot-maven-plugin</artifactId>
				<version>${nutzboot.version}</version>
				<configuration>
					<repoUser>TopCoderMyDream</repoUser>
					<repoUrl>http://appstore.nutz.io/repo</repoUrl>
				</configuration>
			</plugin>

跟这个没关系,贴当前打包的日志

D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot>mvn clean package nutzboot:shade
[INFO] Scanning for projects...
[INFO]
[INFO] --------------------------< com.dd:LuliChat >---------------------------
[INFO] Building LuliChat Maven Webapp 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 451 B/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-daocache/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-daocache/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 2.6 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutzmore/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutzmore/1.r.67-SNAPSHOT/maven-metadata.xml (597 B at 1.3 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-websocket/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-websocket/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 3.4 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-shiro/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-shiro/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 2.6 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-cache/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-plugins-cache/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 4.6 kB/s)
Downloading from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-jedis/1.r.67-SNAPSHOT/maven-metadata.xml
Downloaded from nutz-snapshots: http://jfrog.nutz.cn/artifactory/snapshots/org/nutz/nutz-integration-jedis/1.r.67-SNAPSHOT/maven-metadata.xml (1.2 kB at 2.8 kB/s)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ LuliChat ---
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ LuliChat ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 172 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:compile (default-compile) @ LuliChat ---
[INFO] Compiling 46 source files to D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\classes
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/filter/AuthenticationFilter.java: D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzbo
ot\src\main\java\com\dd\filter\AuthenticationFilter.java使用或覆盖了已过时的 API。
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/filter/AuthenticationFilter.java: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/context/SessionContext.java: 某些输入文件使用了未经检查或不安全的操作。
[INFO] /D:/ProjectChatRoom/源码/LuliChat-nutzboot/LuliChat-nutzboot/src/main/java/com/dd/context/SessionContext.java: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ LuliChat ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\src\test\resources
[INFO]
[INFO] --- maven-compiler-plugin:3.3:testCompile (default-testCompile) @ LuliChat ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ LuliChat ---
[INFO] No tests to run.
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ LuliChat ---
[INFO] Building jar: D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\lulichat.jar
[INFO]
[INFO] --- maven-shade-plugin:3.0.0:shade (default) @ LuliChat ---
[INFO] Including org.nutz:nutzboot-starter-nutz-mvc:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutzboot-core:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jdbc:jar:2.2.3 in the shaded jar.
[INFO] Including com.alibaba:druid:jar:1.1.10 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-nutz-dao:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-daocache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jetty:jar:2.2.3 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-webapp:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-xml:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-common:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-api:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-server-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-annotations:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-plus:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.ow2.asm:asm-commons:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-tree:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-analysis:jar:6.1.1 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-client-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-client-api:jar:1.0 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-api:jar:1.0 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-websocket:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-servlet3:jar:2.2.3 in the shaded jar.
[INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar.
[INFO] Including org.ow2.asm:asm:jar:6.1.1 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.25 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.25 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-freemarker:jar:2.2.3 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.28 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-shiro:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-integration-shiro:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-web:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-core:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-ehcache:jar:1.3.2 in the shaded jar.
[INFO] Including net.sf.ehcache:ehcache:jar:2.10.4 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-cache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutz-integration-jedis:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including com.microsoft.sqlserver:sqljdbc4:jar:4.0 in the shaded jar.
[INFO] Including org.t-io:tio-websocket-server:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-websocket-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-http-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-core:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-utils:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.apache.commons:commons-collections4:jar:4.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.7 in the shaded jar.
[INFO] Including org.apache.commons:commons-text:jar:1.4 in the shaded jar.
[INFO] Including cn.hutool:hutool-all:jar:4.1.2 in the shaded jar.
[INFO] Including com.alibaba:fastjson:jar:1.2.47 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:25.1-jre in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.2 in the shaded jar.
[INFO] Including org.checkerframework:checker-qual:jar:2.0.0 in the shaded jar.
[INFO] Including com.google.errorprone:error_prone_annotations:jar:2.1.3 in the shaded jar.
[INFO] Including com.google.j2objc:j2objc-annotations:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.mojo:animal-sniffer-annotations:jar:1.14 in the shaded jar.
[INFO] Including com.github.ben-manes.caffeine:caffeine:jar:2.6.2 in the shaded jar.
[INFO] Including org.jodd:jodd-core:jar:5.0.3 in the shaded jar.
[INFO] Including org.redisson:redisson:jar:3.7.3 in the shaded jar.
[INFO] Including io.netty:netty-common:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-buffer:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-transport:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-handler:jar:4.1.25.Final in the shaded jar.
[INFO] Including javax.cache:cache-api:jar:1.0.0 in the shaded jar.
[INFO] Including io.projectreactor:reactor-core:jar:3.1.7.RELEASE in the shaded jar.
[INFO] Including org.reactivestreams:reactive-streams:jar:1.0.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.7.9 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.15 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.7.9 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.7.9.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.7.0 in the shaded jar.
[INFO] Including net.bytebuddy:byte-buddy:jar:1.8.11 in the shaded jar.
[INFO] Including org.jodd:jodd-bean:jar:3.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.11 in the shaded jar.
[INFO] Including org.t-io:tio-http-server:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including io.github.lukehutch:fast-classpath-scanner:jar:3.1.10 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.8 in the shaded jar.
[INFO] Including com.esotericsoftware:reflectasm:jar:1.11.7 in the shaded jar.
[INFO] Including com.aliyun.oss:aliyun-sdk-oss:jar:2.8.2 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpclient:jar:4.4.1 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpcore:jar:4.4.1 in the shaded jar.
[INFO] Including commons-logging:commons-logging:jar:1.2 in the shaded jar.
[INFO] Including org.jdom:jdom:jar:1.1 in the shaded jar.
[INFO] Including net.sf.json-lib:json-lib:jar:jdk15:2.4 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.8.0 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.5 in the shaded jar.
[INFO] Including net.sf.ezmorph:ezmorph:jar:1.0.6 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-test-junit4:jar:2.2.8 in the shaded jar.
[WARNING] asm-commons-6.1.1.jar, asm-analysis-6.1.1.jar, asm-tree-6.1.1.jar, asm-6.1.1.jar, fast-classpath-scanner-3.1.10.jar define 1 overlapping classes:
[WARNING]   - module-info
[WARNING] javax.websocket-api-1.0.jar, javax.websocket-client-api-1.0.jar define 45 overlapping classes:
[WARNING]   - javax.websocket.Decoder$Text
[WARNING]   - javax.websocket.DeploymentException
[WARNING]   - javax.websocket.SendHandler
[WARNING]   - javax.websocket.ClientEndpointConfig
[WARNING]   - javax.websocket.SendResult
[WARNING]   - javax.websocket.Extension
[WARNING]   - javax.websocket.ClientEndpointConfig$Builder
[WARNING]   - javax.websocket.OnError
[WARNING]   - javax.websocket.PongMessage
[WARNING]   - javax.websocket.Decoder
[WARNING]   - 35 more...
[WARNING] jcl-over-slf4j-1.7.25.jar, commons-logging-1.2.jar define 6 overlapping classes:
[WARNING]   - org.apache.commons.logging.impl.SimpleLog$1
[WARNING]   - org.apache.commons.logging.Log
[WARNING]   - org.apache.commons.logging.impl.SimpleLog
[WARNING]   - org.apache.commons.logging.LogConfigurationException
[WARNING]   - org.apache.commons.logging.impl.NoOpLog
[WARNING]   - org.apache.commons.logging.LogFactory
[WARNING] commons-collections-3.2.1.jar, commons-beanutils-1.8.0.jar define 10 overlapping classes:
[WARNING]   - org.apache.commons.collections.FastHashMap$EntrySet
[WARNING]   - org.apache.commons.collections.FastHashMap$KeySet
[WARNING]   - org.apache.commons.collections.FastHashMap$CollectionView$CollectionViewIterator
[WARNING]   - org.apache.commons.collections.ArrayStack
[WARNING]   - org.apache.commons.collections.FastHashMap$Values
[WARNING]   - org.apache.commons.collections.FastHashMap$CollectionView
[WARNING]   - org.apache.commons.collections.FastHashMap$1
[WARNING]   - org.apache.commons.collections.Buffer
[WARNING]   - org.apache.commons.collections.FastHashMap
[WARNING]   - org.apache.commons.collections.BufferUnderflowException
[WARNING] nutzboot-core-2.2.3.jar, nutz-1.r.67-SNAPSHOT.jar define 3 overlapping classes:
[WARNING]   - org.nutz.log.impl.Slf4jLogAdapter
[WARNING]   - org.nutz.log.impl.Slf4jLogAdapter$SimpleSlf4jLogger
[WARNING]   - org.nutz.log.impl.Slf4jLogger
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\lulichat.jar with D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\target\LuliChat-1.
0-SNAPSHOT-shaded.jar
[INFO] Dependency-reduced POM written at: D:\ProjectChatRoom\源码\LuliChat-nutzboot\LuliChat-nutzboot\dependency-reduced-pom.xml
[INFO]
[INFO] --- nutzboot-maven-plugin:2.2.3:shade (default-cli) @ LuliChat ---
[INFO] Including org.nutz:nutzboot-starter-nutz-mvc:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutzboot-core:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jdbc:jar:2.2.3 in the shaded jar.
[INFO] Including com.alibaba:druid:jar:1.1.10 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-nutz-dao:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-daocache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-jetty:jar:2.2.3 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-http:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-util:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-io:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-webapp:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-xml:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-security:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-server:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-common:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-api:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-client:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:websocket-servlet:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-server-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-annotations:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.eclipse.jetty:jetty-plus:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including org.ow2.asm:asm-commons:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-tree:jar:6.1.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm-analysis:jar:6.1.1 in the shaded jar.
[INFO] Including org.eclipse.jetty.websocket:javax-websocket-client-impl:jar:9.4.11.v20180605 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-client-api:jar:1.0 in the shaded jar.
[INFO] Including javax.websocket:javax.websocket-api:jar:1.0 in the shaded jar.
[INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-websocket:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutzboot-servlet3:jar:2.2.3 in the shaded jar.
[INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar.
[INFO] Including org.ow2.asm:asm:jar:6.1.1 in the shaded jar.
[INFO] Including org.slf4j:slf4j-log4j12:jar:1.7.25 in the shaded jar.
[INFO] Including org.slf4j:slf4j-api:jar:1.7.25 in the shaded jar.
[INFO] Including log4j:log4j:jar:1.2.17 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-freemarker:jar:2.2.3 in the shaded jar.
[INFO] Including org.freemarker:freemarker:jar:2.3.28 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-shiro:jar:2.2.3 in the shaded jar.
[INFO] Including org.nutz:nutz-integration-shiro:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.25 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-web:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-core:jar:1.3.2 in the shaded jar.
[INFO] Including org.apache.shiro:shiro-ehcache:jar:1.3.2 in the shaded jar.
[INFO] Including net.sf.ehcache:ehcache:jar:2.10.4 in the shaded jar.
[INFO] Including org.nutz:nutz-plugins-cache:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including org.nutz:nutz-integration-jedis:jar:1.r.67-SNAPSHOT in the shaded jar.
[INFO] Including com.microsoft.sqlserver:sqljdbc4:jar:4.0 in the shaded jar.
[INFO] Including org.t-io:tio-websocket-server:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-websocket-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-http-common:jar:3.1.4.v20180726-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-core:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.t-io:tio-utils:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including org.apache.commons:commons-collections4:jar:4.2 in the shaded jar.
[INFO] Including org.apache.commons:commons-lang3:jar:3.7 in the shaded jar.
[INFO] Including org.apache.commons:commons-text:jar:1.4 in the shaded jar.
[INFO] Including cn.hutool:hutool-all:jar:4.1.2 in the shaded jar.
[INFO] Including com.alibaba:fastjson:jar:1.2.47 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:25.1-jre in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.2 in the shaded jar.
[INFO] Including org.checkerframework:checker-qual:jar:2.0.0 in the shaded jar.
[INFO] Including com.google.errorprone:error_prone_annotations:jar:2.1.3 in the shaded jar.
[INFO] Including com.google.j2objc:j2objc-annotations:jar:1.1 in the shaded jar.
[INFO] Including org.codehaus.mojo:animal-sniffer-annotations:jar:1.14 in the shaded jar.
[INFO] Including com.github.ben-manes.caffeine:caffeine:jar:2.6.2 in the shaded jar.
[INFO] Including org.jodd:jodd-core:jar:5.0.3 in the shaded jar.
[INFO] Including org.redisson:redisson:jar:3.7.3 in the shaded jar.
[INFO] Including io.netty:netty-common:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-buffer:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-transport:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-resolver-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-codec-dns:jar:4.1.25.Final in the shaded jar.
[INFO] Including io.netty:netty-handler:jar:4.1.25.Final in the shaded jar.
[INFO] Including javax.cache:cache-api:jar:1.0.0 in the shaded jar.
[INFO] Including io.projectreactor:reactor-core:jar:3.1.7.RELEASE in the shaded jar.
[INFO] Including org.reactivestreams:reactive-streams:jar:1.0.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.7.9 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.15 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.7.9 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.7.9.2 in the shaded jar.
[INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.7.0 in the shaded jar.
[INFO] Including net.bytebuddy:byte-buddy:jar:1.8.11 in the shaded jar.
[INFO] Including org.jodd:jodd-bean:jar:3.7.1 in the shaded jar.
[INFO] Including commons-codec:commons-codec:jar:1.11 in the shaded jar.
[INFO] Including org.t-io:tio-http-server:jar:3.1.3.v20180720-RELEASE in the shaded jar.
[INFO] Including io.github.lukehutch:fast-classpath-scanner:jar:3.1.10 in the shaded jar.
[INFO] Including com.thoughtworks.paranamer:paranamer:jar:2.8 in the shaded jar.
[INFO] Including com.esotericsoftware:reflectasm:jar:1.11.7 in the shaded jar.
[INFO] Including com.aliyun.oss:aliyun-sdk-oss:jar:2.8.2 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpclient:jar:4.4.1 in the shaded jar.
[INFO] Including org.apache.httpcomponents:httpcore:jar:4.4.1 in the shaded jar.
[INFO] Including commons-logging:commons-logging:jar:1.2 in the shaded jar.
[INFO] Including org.jdom:jdom:jar:1.1 in the shaded jar.
[INFO] Including net.sf.json-lib:json-lib:jar:jdk15:2.4 in the shaded jar.
[INFO] Including commons-beanutils:commons-beanutils:jar:1.8.0 in the shaded jar.
[INFO] Including commons-collections:commons-collections:jar:3.2.1 in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.5 in the shaded jar.
[INFO] Including net.sf.ezmorph:ezmorph:jar:1.0.6 in the shaded jar.
[INFO] Including org.nutz:nutzboot-starter-test-junit4:jar:2.2.8 in the shaded jar.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:14 min
[INFO] Finished at: 2019-01-03T14:23:00+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.nutz.boot:nutzboot-maven-plugin:2.2.3:shade (default-cli) on project LuliChat: Error creating shaded jar: Invalid signature file digest for Manif
est main attributes -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

还是这个问题

加一下qq群, 让蛋蛋帮忙看看吧 24457628

添加回复
请先登陆
回到顶部