e924ec8c0a8a5a07dfec37a8baaa9464876f58cf..0737fe6ae12d246841a5cc5f5bb5e782cc1aebcd
2020-04-26 zhouwei
1.01版本调整
0737fe 对比 | 目录
2019-11-25 zhouwei
Merge branch 'master' of ssh://github.aaej.cn:29418/maven-root
14052d 对比 | 目录
2019-11-25 zhouwei
11
eeeca4 对比 | 目录
1个文件已修改
55 ■■■■ 已修改文件
boot-parent/pom.xml 55 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
boot-parent/pom.xml
@@ -10,7 +10,7 @@
    </parent>
    <groupId>com.safeluck</groupId>
    <artifactId>springboot-maven-root</artifactId>
    <version>1.0</version>
    <version>1.01</version>
    <packaging>pom</packaging>
    <properties>
@@ -38,7 +38,18 @@
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <!--<exclusions>-->
                <!--<exclusion>-->
                    <!--<groupId>org.springframework.boot</groupId>-->
                    <!--<artifactId>spring-boot-starter-logging</artifactId>-->
                <!--</exclusion>-->
            <!--</exclusions>-->
        </dependency>
        <!--<dependency>-->
            <!--<groupId>org.springframework.boot</groupId>-->
            <!--<artifactId>spring-boot-starter-log4j</artifactId>-->
            <!--<version>1.3.8.RELEASE</version>-->
        <!--</dependency>-->
        <dependency>
            <groupId>com.fasterxml.jackson.module</groupId>
            <artifactId>jackson-module-kotlin</artifactId>
@@ -183,37 +194,41 @@
            <artifactId>javax.persistence-api</artifactId>
            <version>2.2</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>central</id>
            <name>Central Repository</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
    <!--<repositories>-->
        <!--<repository>-->
            <!--<id>central</id>-->
            <!--<name>Central Repository</name>-->
            <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
            <!--<snapshots>-->
                <!--<enabled>false</enabled>-->
            <!--</snapshots>-->
        <!--</repository>-->
    <!--</repositories>-->
    <build>
        <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
        <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
        <plugins>
            <plugin>
            <plugin >
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <inherited>false</inherited>
            </plugin>
            <plugin>
                <groupId>org.jetbrains.kotlin</groupId>
                <artifactId>kotlin-maven-plugin</artifactId>
                <configuration>
                    <args>
                        <arg>-Xjsr305=strict</arg>
                    </args>
                    <compilerPlugins>
                        <plugin>spring</plugin>
                    </compilerPlugins>
                </configuration>
                <dependencies>
                    <dependency>
@@ -223,7 +238,21 @@
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
    <distributionManagement>
        <repository>
            <id>nexus-releases</id>
            <name>libs-releases</name>
            <url>http://192.168.0.36:10010/repository/maven-releases/</url>
        </repository>
        <snapshotRepository>
            <id>nexus-snapshots</id>
            <name>libs-snapshots</name>
            <url>http://192.168.0.36:10010/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
</project>