Skip to content
Snippets Groups Projects
Select Git revision
  • c9dff2800d27fb65f9661d85af00fdad7ba482da
  • master default protected
  • correlation
  • 24-non-negative-omp
  • 15-integration-sota
  • 20-coherence-des-arbres-de-predictions
  • 19-add-some-tests
  • 13-visualization
  • 17-adding-new-datasets
  • 12-experiment-pipeline
  • 14-correction-of-multiclass-classif
  • archive/10-gridsearching-of-the-base-forest
  • archive/farah_notation_and_related_work
  • archive/wip_clean_scripts
  • archive/4-implement-omp_forest_classifier
  • archive/5-add-plots-2
  • archive/Leo_Add_first_notebook
17 results

.env.example

Blame
  • pom.xml 1.78 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/xsd/maven-4.0.0.xsd">
        <parent>
            <artifactId>jee9.1</artifactId>
            <groupId>fr.univtln.bruno.samples.jee91</groupId>
            <version>1.0-SNAPSHOT</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
    
        <artifactId>jsf</artifactId>
        <packaging>war</packaging>
    
        <properties>
            <primefaces.version>11.0.0-RC2</primefaces.version>
            <all-themes.version>1.0.10</all-themes.version>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>fr.univtln.bruno.samples.jee91</groupId>
                <artifactId>business</artifactId>
                <version>1.0-SNAPSHOT</version>
                <type>ejb</type>
                <!--type>ejb-client</type-->
            </dependency>
    
            <dependency>
                <groupId>fr.univtln.bruno.samples.jee91</groupId>
                <artifactId>dao</artifactId>
                <version>1.0-SNAPSHOT</version>
            </dependency>
    
            <dependency>
                <groupId>org.junit.jupiter</groupId>
                <artifactId>junit-jupiter</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.primefaces</groupId>
                <artifactId>primefaces</artifactId>
                <version>${primefaces.version}</version>
                <classifier>jakarta</classifier>
            </dependency>
    
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>3.3.2</version>
                </plugin>
            </plugins>
        </build>
    
    </project>