pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>1.3.1</version>
  8. </parent>
  9. <artifactId>superdesk-libs-tx</artifactId>
  10. <description>Distributed transaction</description>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-deploy-plugin</artifactId>
  16. <configuration>
  17. <skip>true</skip>
  18. </configuration>
  19. </plugin>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-install-plugin</artifactId>
  23. <version>2.5.2</version>
  24. <configuration>
  25. <skip>true</skip>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>