更新 README.md
This commit is contained in:
62
README.md
62
README.md
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
```xml
|
```xml
|
||||||
|
|
||||||
<build>
|
<project>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.yanghuanglin</groupId>
|
<groupId>com.yanghuanglin</groupId>
|
||||||
@@ -34,34 +34,38 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<!-- 每次执行mvn clean时,自动安装指定的jar包 -->
|
<build>
|
||||||
<plugin>
|
<plugins>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<!-- 每次执行mvn clean时,自动安装指定的jar包 -->
|
||||||
<artifactId>maven-install-plugin</artifactId>
|
<plugin>
|
||||||
<version>2.5</version>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<executions>
|
<artifactId>maven-install-plugin</artifactId>
|
||||||
<execution>
|
<version>2.5</version>
|
||||||
<id>install-external</id>
|
<executions>
|
||||||
<phase>clean</phase>
|
<execution>
|
||||||
<goals>
|
<id>install-external</id>
|
||||||
<goal>install-file</goal>
|
<phase>clean</phase>
|
||||||
</goals>
|
<goals>
|
||||||
<configuration>
|
<goal>install-file</goal>
|
||||||
<!-- ${project.basedir}表示当前项目的根目录 -->
|
</goals>
|
||||||
<file>${project.basedir}/lib/seq-1.0.0.jar</file>
|
<configuration>
|
||||||
<pomFile>${pom.basedir}/lib/seq-1.0.0-pom.xml</pomFile>
|
<!-- ${project.basedir}表示当前项目的根目录 -->
|
||||||
<sources>${project.basedir}/lib/seq-1.0.0-sources.jar</sources>
|
<file>${project.basedir}/lib/seq-1.0.0.jar</file>
|
||||||
<repositoryLayout>default</repositoryLayout>
|
<pomFile>${pom.basedir}/lib/seq-1.0.0-pom.xml</pomFile>
|
||||||
<groupId>com.yanghuanglin</groupId>
|
<sources>${project.basedir}/lib/seq-1.0.0-sources.jar</sources>
|
||||||
<artifactId>seq</artifactId>
|
<repositoryLayout>default</repositoryLayout>
|
||||||
<version>1.0.0</version>
|
<groupId>com.yanghuanglin</groupId>
|
||||||
<packaging>jar</packaging>
|
<artifactId>seq</artifactId>
|
||||||
<generatePom>true</generatePom>
|
<version>1.0.0</version>
|
||||||
</configuration>
|
<packaging>jar</packaging>
|
||||||
</execution>
|
<generatePom>true</generatePom>
|
||||||
</executions>
|
</configuration>
|
||||||
</plugin>
|
</execution>
|
||||||
</build>
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
||||||
```
|
```
|
||||||
|
|
||||||
+ springboot中配置方式一(优先):直接注入已有jdbcTemplate和transactionTemplate
|
+ springboot中配置方式一(优先):直接注入已有jdbcTemplate和transactionTemplate
|
||||||
|
|||||||
Reference in New Issue
Block a user