Skip to content

Commit

Permalink
* Fixing warnings about UTF in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
jredmondson committed Jun 23, 2018
1 parent 70d224b commit c7cb1be
Showing 1 changed file with 122 additions and 120 deletions.
242 changes: 122 additions & 120 deletions port/java/pom.xml
Original file line number Diff line number Diff line change
@@ -1,137 +1,139 @@
<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>ai.madara</groupId>
<artifactId>madara</artifactId>
<version>3.2.0</version>
<description>Provides distributed knowledge sharing services for multi-agent systems.</description>
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>ai.madara</groupId>
<artifactId>madara</artifactId>
<version>3.2.0</version>
<description>Provides distributed knowledge sharing services for multi-agent systems.</description>

<developers>
<developer>
<name>James Edmondson</name>
<email></email>
<organization>MADARA</organization>
<organizationUrl>http://madara.ai</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>MADARA License</name>
<url>https://github.com/jredmondson/madara/blob/master/LICENSE.txt</url>
</license>
</licenses>
<build>
<plugins>
<developers>
<developer>
<name>James Edmondson</name>
<email></email>
<organization>MADARA</organization>
<organizationUrl>http://madara.ai</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>MADARA License</name>
<url>https://github.com/jredmondson/madara/blob/master/LICENSE.txt</url>
</license>
</licenses>
<build>
<plugins>


<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>install</phase>
<configuration>
<target>
<copy file="target/${project.artifactId}-${project.version}.jar"
tofile="${env.MADARA_ROOT}/lib/${project.artifactId}.jar" />
<copy file="target/${project.artifactId}-${project.version}.jar"
tofile="${env.MADARA_ROOT}/lib/${project.artifactId}-${project.version}.jar" />
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>install</phase>
<configuration>
<target>
<copy file="target/${project.artifactId}-${project.version}.jar"
tofile="${env.MADARA_ROOT}/lib/${project.artifactId}.jar" />
<copy file="target/${project.artifactId}-${project.version}.jar"
tofile="${env.MADARA_ROOT}/lib/${project.artifactId}-${project.version}.jar" />

</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>
</plugins>
</build>


<profiles>
<profile>
<id>release</id>
<properties>
<madara.version>3.2.0</madara.version>
</properties>
<profiles>
<profile>
<id>release</id>
<properties>
<madara.version>3.2.0</madara.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Location for storing token & password - https://maven.apache.org/settings.html#Servers -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Location for storing token & password - https://maven.apache.org/settings.html#Servers -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>


<profile>
<id>development</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<madara.version>3.2.0-DEV</madara.version>
</properties>
</profile>
</profiles>
<profile>
<id>development</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<madara.version>3.2.0-DEV</madara.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</profile>
</profiles>



<scm>
<connection>scm:git:git://github.com:jredmondson/madara.git</connection>
<developerConnection>scm:git:ssh://github.com:jredmondson/madara.git</developerConnection>
<url>http://github.com:jredmondson/madara/tree/master</url>
</scm>
<scm>
<connection>scm:git:git://github.com:jredmondson/madara.git</connection>
<developerConnection>scm:git:ssh://github.com:jredmondson/madara.git</developerConnection>
<url>http://github.com:jredmondson/madara/tree/master</url>
</scm>
</project>

0 comments on commit c7cb1be

Please sign in to comment.