1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.shinsoft</groupId>
- <artifactId>service</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>bas-api</artifactId>
- <version>1.0.0</version>
-
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-openfeign-core</artifactId>
- <version>2.1.3.RELEASE</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <!-- 公共方法和接口-->
- <dependency>
- <groupId>com.shinsoft</groupId>
- <artifactId>tools</artifactId>
- <version>1.0.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/../lib/tools-1.0.1.jar</systemPath>
- </dependency>
- <!-- 公共方法和接口-->
-
-
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <outputDirectory>
- ${project.basedir}/../lib
- </outputDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|