Skip to content

Commit

Permalink
Created pom.xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
octopus-axonivy committed Jan 23, 2025
1 parent ef5c379 commit a839061
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions tel-search-ch-connector-demo-app/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>com.axonivy.connector.telsearch</groupId>
<artifactId>tel-search-ch-connector-demo-app-app</artifactId>
<version>12.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
<developerConnection>scm:git:https://github.com/axonivy-market/${project.name}.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.axonivy.connector.telsearch</groupId>
<artifactId>tel-search-ch-connector-demo</artifactId>
<version>12.0.1-SNAPSHOT</version>
<type>iar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>create.app</id>
<phase>generate-resources</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit a839061

Please sign in to comment.