-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update encoding configuration for pom files
- Loading branch information
1 parent
e462ac2
commit c25aa95
Showing
4 changed files
with
147 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,41 @@ | ||
<?xml version="1.0"?> | ||
<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> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector-demo</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<properties> | ||
<project.build.plugin.version>12.0.0</project.build.plugin.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
</dependencies> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>${project.build.plugin.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<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> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector-demo</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<properties> | ||
<project.build.plugin.version>12.0.0</project.build.plugin.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
</dependencies> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>${project.build.plugin.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,75 @@ | ||
<?xml version="1.0"?> | ||
<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> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector-test</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<properties> | ||
<project.build.plugin.version>12.0.0</project.build.plugin.version> | ||
<tester.version>12.0.0</tester.version> | ||
</properties> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<repositories> | ||
<repository> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.axonivy.ivy.test</groupId> | ||
<artifactId>unit-tester</artifactId> | ||
<version>${tester.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector-demo</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<testSourceDirectory>src_test</testSourceDirectory> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>${project.build.plugin.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<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> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector-test</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<properties> | ||
<project.build.plugin.version>12.0.0</project.build.plugin.version> | ||
<tester.version>12.0.0</tester.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<repositories> | ||
<repository> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.axonivy.ivy.test</groupId> | ||
<artifactId>unit-tester</artifactId> | ||
<version>${tester.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector-demo</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<testSourceDirectory>src_test</testSourceDirectory> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>${project.build.plugin.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
<?xml version="1.0"?> | ||
<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> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<properties> | ||
<project.build.plugin.version>12.0.0</project.build.plugin.version> | ||
</properties> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>${project.build.plugin.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<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> | ||
<groupId>com.axonivy.connector.alfresco</groupId> | ||
<artifactId>alfresco-connector</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<properties> | ||
<project.build.plugin.version>12.0.0</project.build.plugin.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
||
</properties> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<snapshots> | ||
<updatePolicy>always</updatePolicy> | ||
</snapshots> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>${project.build.plugin.version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters