12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0"?>
- <project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <groupId>kasite</groupId>
- <version>1.0.0-RELEASES</version>
- <artifactId>com.intelmt.client.business.ui.home.medical.bed</artifactId>
- <name>com.intelmt.client.business.ui.home.medical.bed</name>
- <url>http://maven.apache.org</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <id>copy-dist</id>
- <phase>package</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <encoding>UTF-8</encoding>
- <outputDirectory>source/http/resources/module/backstage/home-medical-bed</outputDirectory>
- <resources>
- <resource>
- <directory>dist</directory>
- <includes>
- <include>**/*.*</include>
- </includes>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <attach>true</attach>
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>source</directory>
- <includes>
- <include>**/*.*</include>
- </includes>
- <filtering>false</filtering>
- </resource>
- </resources>
- </build>
- <!-- 打包上传nexus路径 -->
- <distributionManagement>
- <repository>
- <id>nexus</id>
- <name>Releases</name>
- <url>http://maven.kasitesoft.com/repository/maven-releases</url>
- </repository>
- </distributionManagement>
- </project>
|