zoukankan      html  css  js  c++  java
  • maven build

    <build>
      <plugins>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
         <archive>
          <addMavenDescriptor>false</addMavenDescriptor>
          <manifest>
           <classpathPrefix>lib/</classpathPrefix>
           <addClasspath>true</addClasspath>
           <mainClass>com.opensource.netrix.push.aog.Startup</mainClass>
          </manifest>
          <manifestEntries>
           <Class-Path>. META-INF/ebus/ META-INF/spring/ </Class-Path>
          </manifestEntries>
         </archive>
         <excludes>
          <exclude>META-INF/**</exclude>
          <exclude>log4j.xml</exclude>
          <exclude>logback.xml</exclude>
         </excludes>
        </configuration>
       </plugin>
      </plugins>
     </build>

  • 相关阅读:
    键盘快捷键
    电脑命令行命令
    网络基础TCP/IP
    运算符优先级
    元字符汇总
    正则表达式
    模板语法(DOM与Vue数据绑定)
    computed、methods、watch
    vue实例
    坐标轴
  • 原文地址:https://www.cnblogs.com/bbsno1/p/3271453.html
Copyright © 2011-2022 走看看