Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • release_2_1_5
  • release_2_1_4
  • release_2_1_3
  • release_2_1_2
  • release_2_1_1
  • release_2_1_0
  • release_2_0_8
  • release_2_0_7
  • release_2_0_6
  • release_2_0_5
  • release_2_0_4
  • release_2_0_3
  • release_2_0_2
  • release_2_0_1
  • release_2_0_0
  • release_1_6_4
  • release_1_6_3
  • release_1_6_2
  • release_1_6_1
  • release_1_6_0
21 results

Attributes.html

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>