• maven应用


    parent增加

    <distributionManagement>
    <repository>
    <id>maven-release</id>
    <name>Nexus Release Repository</name>
    <url>http://******:8081/repository/maven-snapshots/</url> <!--镜像路径-->
    </repository>

    <snapshotRepository>
    <id>maven-snapshots</id>
    <name>Nexus Release Repository</name>
    <url>http://*******:8081/repository/maven-snapshots/</url>
    </snapshotRepository>
    </distributionManagement>

    增加插件

    <build>
        <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
    <compilerVersion>1.8</compilerVersion>
    <source>1.8</source>
    <target>1.8</target>
    </configuration>
    <version>3.6.0</version>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-source-plugin</artifactId>
    <version>2.1</version>
    <configuration>
    <attach>true</attach>
    </configuration>
    <executions>
    <execution>
    <phase>compile</phase>
    <goals>
    <goal>jar</goal>
    </goals>
    </execution>
    </executions>
    </plugin>
    </plugins>
    </build>
    子项目增加
     <build>
    <plugins>
    <plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
    <source>1.8</source>
    <target>1.8</target>
    <encoding>UTF-8</encoding>
    </configuration>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.6</version>
    </plugin>
    </plugins>
    </build>

     
    talk is cheap. show me the code.
  • 相关阅读:
    编码
    TCP
    Http
    信息安全
    https基本原理
    Android之ListView异步加载图片且仅显示可见子项中的图片
    android 一些数据转换方法
    Android 关于 OnScrollListener 事件顺序次数的简要分析
    图片的内存缓存控制
    Android实现图片宽度100%ImageView宽度且高度按比例自动伸缩
  • 原文地址:https://www.cnblogs.com/yushizhang/p/13029199.html
Copyright © 2020-2023  润新知