Skip to content
Snippets Groups Projects
Select Git revision
  • c5c400f59e1d698a4127233605e59da903760de3
  • master default protected
  • dependabot/maven/junit-junit-4.13.1
  • development
4 results

pom.xml

Blame
  • Emmanuel Bruno's avatar
    Emmanuel Bruno authored
    c5c400f5
    History
    pom.xml 2.90 KiB
    <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>
    
        <properties>
            <!-- Le nom court du projet a utiliser pour github -->
            <projectShortName>cours-java-librarymanager-simplegui</projectShortName>
            <github.account>emmanuelbruno</github.account>
            <!-- utln login for nexus (maven and docker ) repository on lsis -->
            <lsisnexus.login>emmanuel.bruno@univ-tln.fr</lsisnexus.login>
            <app.main.class>fr.univtln.bruno.d14.simpleihm.App</app.main.class>
        </properties>
    
        <repositories>
            <repository>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
                <id>bintray-dptinfoutln-public</id>
                <name>bintray</name>
                <url>https://dl.bintray.com/dptinfoutln/public</url>
            </repository>
        </repositories>
        <pluginRepositories>
            <pluginRepository>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
                <id>bintray-dptinfoutln-public</id>
                <name>bintray-plugins</name>
                <url>https://dl.bintray.com/dptinfoutln/public</url>
            </pluginRepository>
        </pluginRepositories>
    
        <parent>
            <groupId>fr.univtln.bruno.coursjava.librarymanager</groupId>
            <artifactId>librarymanager-parent</artifactId>
            <version>1.0-SNAPSHOT</version>
        </parent>
    
        <groupId>fr.univtln.bruno.coursjava.librarymanager</groupId>
        <artifactId>librarymanager-simplegui</artifactId>
        <version>1.0-SNAPSHOT</version>
    
        <dependencies>
            <dependency>
                <groupId>fr.univtln.bruno.coursjava.librarymanager</groupId>
                <artifactId>librarymanager-observablelibrary</artifactId>
                <version>1.0.0-dev-2</version>
            </dependency>
    
            <dependency>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.junit.jupiter</groupId>
                <artifactId>junit-jupiter-api</artifactId>
                <scope>test</scope>
            </dependency>
            <!-- Only required to run tests in an IntelliJ IDEA that bundles an older version -->
            <dependency>
                <groupId>org.junit.platform</groupId>
                <artifactId>junit-platform-launcher</artifactId>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.junit.jupiter</groupId>
                <artifactId>junit-jupiter-engine</artifactId>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
                <scope>test</scope>
            </dependency>
    
        </dependencies>
    
    </project>