Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • 1.7.0
  • v1.6.14
  • v1.6.13
  • v1.6.12
  • v1.6.11
  • v1.6.10
  • v1.6.9
  • v1.6.8
  • v1.6.7
  • v1.6.6
  • v1.6.5
  • v1.6.4
  • v1.6.3
14 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pom.xml 1.74 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    <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/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>fr.soleil.lib</groupId>
        <artifactId>ProjectUtilities</artifactId>
        <version>1.7.0</version>
      </parent>
    
      <artifactId>BasicUtilities</artifactId>
    
      <name>Basic Utilities</name>
      <description> This project contains non graphical classes that can be used in
        any other Java
        project</description>
      <scm>
        <connection>
          scm:svn:https://svn.code.sf.net/p/comete/code/trunk/ProjectUtilities/BasicUtilities
        </connection>
        <developerConnection>
          scm:svn:https://svn.code.sf.net/p/comete/code/trunk/ProjectUtilities/BasicUtilities
        </developerConnection>
        <url>
          https://svn.code.sf.net/p/comete/code/trunk/ProjectUtilities/BasicUtilities
        </url>
      </scm>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <configuration>
              <encoding>${project.build.sourceEncoding}</encoding>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <encoding>${project.build.sourceEncoding}</encoding>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
    
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    </project>