Init base project files
This commit is contained in:
39
pom.xml
Normal file
39
pom.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<!-- Common project info -->
|
||||
<groupId>org.itprom</groupId>
|
||||
<artifactId>supp-forms-based-app</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<description>supp-forms-based-app</description>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Sergey Verbitsky</name>
|
||||
<organization>It-prom</organization>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<!-- Java -->
|
||||
<properties>
|
||||
<java.version>25</java.version>
|
||||
<maven.deploy.skip>true</maven.deploy.skip>
|
||||
</properties>
|
||||
|
||||
<!-- Modules -->
|
||||
<modules>
|
||||
<module>frontend</module>
|
||||
<module>backend</module>
|
||||
</modules>
|
||||
|
||||
<!-- Modules publishing -->
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>nexus</id>
|
||||
<url>${env.NEXUS_REGISTRY_MAVEN}/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
Reference in New Issue
Block a user