diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2024-05-21 17:07:23 -0400 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2024-05-21 17:07:23 -0400 |
| commit | 8283e417245b26abd290f7e6fd0511869802fc82 (patch) | |
| tree | ab9a6b3593d4ce5b059dbcd723fdc112edd2613d /wotonomy-web-test/pom.xml | |
| parent | 59b10ba33f4c0b1d399b5d31b7a07380abb62677 (diff) | |
Rename to avoid name conflict
Diffstat (limited to 'wotonomy-web-test/pom.xml')
| -rw-r--r-- | wotonomy-web-test/pom.xml | 171 |
1 files changed, 171 insertions, 0 deletions
diff --git a/wotonomy-web-test/pom.xml b/wotonomy-web-test/pom.xml new file mode 100644 index 0000000..44fd16a --- /dev/null +++ b/wotonomy-web-test/pom.xml @@ -0,0 +1,171 @@ +<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>com.ashardalon</groupId> + <artifactId>wotonomy-web-test</artifactId> + <version>0.1-SNAPSHOT</version> + <packaging>war</packaging> + + <name>Wotonomy web test</name> + <description>This is a test of the Wotonomy framework</description> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.report.sourceEncoding>UTF-8</project.report.sourceEncoding> + <maven.compiler.release>11</maven.compiler.release> + <jakartaee-api.version>10.0.0</jakartaee-api.version> + <compiler-plugin.version>3.11.0</compiler-plugin.version> + <war-plugin.version>3.4.0</war-plugin.version> + </properties> + + <dependencies> + <dependency> + <groupId>jakarta.platform</groupId> + <artifactId>jakarta.jakartaee-api</artifactId> + <version>${jakartaee-api.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-datastore</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-foundation</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-persistence</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-ui</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>net.wotonomy</groupId> + <artifactId>wotonomy-web</artifactId> + <version>1.0-alpha5-SNAPSHOT</version> + </dependency> + </dependencies> + + <build> + <finalName>wotonomy-web-test</finalName> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>${compiler-plugin.version}</version> + </plugin> + <plugin> + <artifactId>maven-war-plugin</artifactId> + <version>${war-plugin.version}</version> + <configuration> + <failOnMissingWebXml>true</failOnMissingWebXml> + </configuration> + </plugin> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>3.7.1</version> + <dependencies> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-webdav-jackrabbit</artifactId> + <version>3.5.3</version> + </dependency> + </dependencies> + </plugin> + + <plugin> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>3.0.0</version> + </plugin> + + <plugin> + <groupId>com.ashardalon</groupId> + <artifactId>slim-tomcat-maven-plugin</artifactId> + <version>1.1-SNAPSHOT</version> + <configuration> + <serverURL>https://blog.ashardalon.com/</serverURL> + <serverName>ashardalon-tomcat</serverName> + <appPath>/wotonomy</appPath> + <update>true</update> + </configuration> + <executions> + <execution> + <phase>deploy</phase> + <goals> + <goal>deploy</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + </build> + + <reporting> + <plugins> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <version>3.4.0</version> + <configuration></configuration> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.1</version> + </plugin> + <plugin> + <artifactId>maven-changes-plugin</artifactId> + <version>2.12.1</version> + </plugin> + </plugins> + </reporting> + + <distributionManagement> + <site> + <id>ashardalon-dav</id> + <url>dav:https://ashardalon.com/projects/wotonomy-test</url> + </site> + <snapshotRepository> + <id>ashardalon</id> + <name>Ashardalon Snapshots</name> + <url>https://repo.ashardalon.com/snapshots</url> + </snapshotRepository> + <repository> + <id>ashardalon</id> + <name>Ashardalon Releases</name> + <url>https://repo.ashardalon.com/releases</url> + </repository> + </distributionManagement> + <repositories> + <repository> + <id>ashardalon-forge</id> + <name>Ashardalon Forge</name> + <url>https://repo.ashardalon.com</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>ashardalon-forge</id> + <name>Ashardalon Forge</name> + <url>https://repo.ashardalon.com</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </pluginRepository> + </pluginRepositories> +</project> |
