|
1 |
| -<!-- Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. --> |
2 |
| -<!-- SPDX-License-Identifier: Apache-2.0 --> |
3 |
| -<root> |
4 |
| -<!-- Empty pom.xml used for testing /transform; see TransformChatTest.kt --> |
5 |
| -</root> |
| 1 | +<!-- Sample pom.xml for testing /transform in TransformChatTest.kt --> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>com.icekredit</groupId> |
| 6 | + <artifactId>uml-code-generator</artifactId> |
| 7 | + <version>1.1-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + <name>uml-code-generator</name> |
| 10 | + <url>http://maven.apache.org</url> |
| 11 | + |
| 12 | + <distributionManagement> |
| 13 | + <snapshotRepository> |
| 14 | + <id>com.icekredit</id> |
| 15 | + <url>http://121.40.66.171:8081/content/repositories/com.icekredit</url> |
| 16 | + </snapshotRepository> |
| 17 | + </distributionManagement> |
| 18 | + |
| 19 | + <repositories> |
| 20 | + <repository> |
| 21 | + <releases> |
| 22 | + <enabled>true</enabled> |
| 23 | + <updatePolicy>always</updatePolicy> |
| 24 | + <checksumPolicy>warn</checksumPolicy> |
| 25 | + </releases> |
| 26 | + <id>public</id> |
| 27 | + <name>Public Repositories</name> |
| 28 | + <url>http://121.40.66.171:8081/content/groups/public/</url> |
| 29 | + </repository> |
| 30 | + |
| 31 | + <repository> |
| 32 | + <snapshots> |
| 33 | + <enabled>true</enabled> |
| 34 | + <updatePolicy>always</updatePolicy> |
| 35 | + <checksumPolicy>warn</checksumPolicy> |
| 36 | + </snapshots> |
| 37 | + |
| 38 | + <id>snapshot</id> |
| 39 | + <name>SnapShot Respositories</name> |
| 40 | + <url>http://121.40.66.171:8081/content/repositories/com.icekredit</url> |
| 41 | + </repository> |
| 42 | + </repositories> |
| 43 | + <pluginRepositories> |
| 44 | + <pluginRepository> |
| 45 | + <snapshots> |
| 46 | + <enabled>true</enabled> |
| 47 | + <updatePolicy>always</updatePolicy> |
| 48 | + <checksumPolicy>warn</checksumPolicy> |
| 49 | + </snapshots> |
| 50 | + <id>public</id> |
| 51 | + <name>Public Repositories</name> |
| 52 | + <url>http://121.40.66.171:8081/content/groups/public/</url> |
| 53 | + </pluginRepository> |
| 54 | + </pluginRepositories> |
| 55 | + |
| 56 | + <properties> |
| 57 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 58 | + <java.version>1.8</java.version> |
| 59 | + </properties> |
| 60 | + |
| 61 | + <dependencies> |
| 62 | + <dependency> |
| 63 | + <groupId>junit</groupId> |
| 64 | + <artifactId>junit</artifactId> |
| 65 | + <version>4.12</version> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + |
| 69 | + <build> |
| 70 | + <finalName>plant-uml-code-generator</finalName> |
| 71 | + <plugins> |
| 72 | + <plugin> |
| 73 | + <artifactId>maven-resources-plugin</artifactId> |
| 74 | + <version>2.5</version> |
| 75 | + <configuration> |
| 76 | + <encoding>UTF-8</encoding> |
| 77 | + </configuration> |
| 78 | + </plugin> |
| 79 | + |
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.tomcat.maven</groupId> |
| 82 | + <artifactId>tomcat7-maven-plugin</artifactId> |
| 83 | + <version>2.0-beta-1</version> |
| 84 | + <configuration> |
| 85 | + <uriEncoding>utf-8</uriEncoding> |
| 86 | + <port>8080</port> |
| 87 | + <path>/</path> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>org.apache.maven.plugins</groupId> |
| 92 | + <artifactId>maven-compiler-plugin</artifactId> |
| 93 | + <configuration> |
| 94 | + <source>1.8</source> |
| 95 | + <target>1.8</target> |
| 96 | + <encoding>UTF-8</encoding> |
| 97 | + </configuration> |
| 98 | + </plugin> |
| 99 | + <plugin> |
| 100 | + <groupId>org.apache.maven.plugins</groupId> |
| 101 | + <artifactId>maven-surefire-plugin</artifactId> |
| 102 | + <version>2.18.1</version> |
| 103 | + <configuration> |
| 104 | + <skipTests>true</skipTests> |
| 105 | + </configuration> |
| 106 | + </plugin> |
| 107 | + |
| 108 | + <plugin> |
| 109 | + <groupId>org.apache.maven.plugins</groupId> |
| 110 | + <artifactId>maven-jar-plugin</artifactId> |
| 111 | + <version>2.4</version> |
| 112 | + </plugin> |
| 113 | + </plugins> |
| 114 | + |
| 115 | + <resources> |
| 116 | + <resource> |
| 117 | + <directory>src/main/resources</directory> |
| 118 | + <includes> |
| 119 | + <include>**/*.properties</include> |
| 120 | + <include>**/*.xml</include> |
| 121 | + <include>**/*.yml</include> |
| 122 | + <include>**/*.json</include> |
| 123 | + </includes> |
| 124 | + <filtering>true</filtering> |
| 125 | + </resource> |
| 126 | + <resource> |
| 127 | + <directory>src/main/java</directory> |
| 128 | + <includes> |
| 129 | + <include>**/*.properties</include> |
| 130 | + <include>**/*.xml</include> |
| 131 | + <include>**/*.yml</include> |
| 132 | + <include>**/*.json</include> |
| 133 | + </includes> |
| 134 | + <filtering>true</filtering> |
| 135 | + </resource> |
| 136 | + </resources> |
| 137 | + </build> |
| 138 | +</project> |
0 commit comments