Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing Maven artifact blocks #56

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions alfrescoecm-demo-app/assembly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>app</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>

<dependencySets>
<dependencySet>
<includes>
<include>*:*:iar:*</include>
</includes>
</dependencySet>
</dependencySets>

<fileSets>
<fileSet>
<includes>
<include>deploy.options.yaml</include>
</includes>
</fileSet>
</fileSets>
</assembly>
8 changes: 8 additions & 0 deletions alfrescoecm-demo-app/deploy.options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Indicates whether project test users should be deployed to the engine or not.
deployTestUsers: FALSE # [AUTO], TRUE, FALSE

# Deployment target settings.
target:
version: RELEASED # [AUTO], RELEASED, (version values, e.g. 2.5 or (2.0,3.0])
state: ACTIVE_AND_RELEASED # [ACTIVE_AND_RELEASED], ACTIVE, INACTIVE
fileFormat: AUTO # [AUTO], PACKED, EXPANDED
46 changes: 46 additions & 0 deletions alfrescoecm-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.alfresco</groupId>
<artifactId>alfrescoecm-demo-app</artifactId>
<version>12.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
<developerConnection>scm:git:https://github.com/axonivy-market/alfresco-connector.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.axonivy.connector.alfresco</groupId>
<artifactId>alfresco-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>
17 changes: 7 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
<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">
<?xml version="1.0"?>
<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.alfresco</groupId>
<artifactId>alfresco-connector-modules</artifactId>
<version>12.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<modules>
<module>alfresco-connector</module>
<module>alfresco-connector-demo</module>
<module>alfresco-connector-test</module>
<module>alfresco-connector-product</module>
<module>alfrescoecm-demo-app</module>
</modules>

<scm>
<developerConnection>scm:git:https://github.com/axonivy-market/alfresco-connector.git</developerConnection>
<tag>HEAD</tag>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
Expand All @@ -31,7 +30,6 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
Expand All @@ -41,5 +39,4 @@
</plugins>
</pluginManagement>
</build>

</project>
Loading