Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • stephane.malandai/poo2024
  • brian.crocoll/poo2024
  • michael.sanz/poo2024
3 results
Show changes
Commits on Source (13)
  • stephane.malandai's avatar
    Update 7 files · db308f11
    stephane.malandai authored
    - /Cours/Chap_1_les_bases.pdf
    - /Cours/Chap_2_objets_classes.pdf
    - /Cours/Chap_3_Héritage_Polymorphisme.pdf
    - /Cours/Chap_6_exceptions.pdf
    - /Cours/Chap_5_types_imbriqués.pdf
    - /Cours/Chap_4_Collections.pdf
    - /Cours/Chap_7_généricité.pdf
    db308f11
  • stephane.malandai's avatar
    Update 5 files · 977a7f07
    stephane.malandai authored
    - /Exercices/serie_6_7_8.pdf
    - /Exercices/serie1.pdf
    - /Exercices/serie2.pdf
    - /Exercices/serie3.pdf
    - /Exercices/serie5.pdf
    977a7f07
  • stephane.malandai's avatar
    a3e3e761
  • stephane.malandai's avatar
    Update 20 files · fd969704
    stephane.malandai authored
    - /Maven/maven-template-jdk17/.DS_Store
    - /Maven/maven-template-jdk17/pom.xml
    - /Maven/maven-template-jdk17/target/.DS_Store
    - /Maven/maven-template-jdk17/target/test-classes/ch/hepia/AppTest.class
    - /Maven/maven-template-jdk17/target/generated-sources/.DS_Store
    - /Maven/maven-template-jdk17/target/classes/ch/hepia/App.class
    - /Maven/maven-template-jdk17/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
    - /Maven/maven-template-jdk17/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
    - /Maven/maven-template-jdk17/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
    - /Maven/maven-template-jdk17/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
    - /Maven/maven-template-jdk17/target/generated-test-sources/.DS_Store
    - /Maven/maven-template-jdk17/target/surefire-reports/ch.hepia.AppTest.txt
    - /Maven/maven-template-jdk17/target/surefire-reports/TEST-ch.hepia.AppTest.xml
    - /Maven/maven-template-jdk17/src/.DS_Store
    - /Maven/maven-template-jdk17/src/test/java/ch/hepia/AppTest.java
    - /Maven/maven-template-jdk17/src/main/.DS_Store
    - /Maven/maven-template-jdk17/src/main/java/.DS_Store
    - /Maven/maven-template-jdk17/src/main/java/ch/.DS_Store
    - /Maven/maven-template-jdk17/src/main/java/ch/hepia/App.java
    - /Maven/intro_maven.pdf
    fd969704
  • stephane.malandai's avatar
    Update file Chap_1_les_bases.pdf · 11ed20a1
    stephane.malandai authored
    11ed20a1
  • kevin.heirich's avatar
    Update file README.md · c4152aa8
    kevin.heirich authored
    c4152aa8
  • stephane.malandai's avatar
    Update file README.md · f1a8fcd6
    stephane.malandai authored
    f1a8fcd6
  • stephane.malandai's avatar
    Update file README.md · 0c452f98
    stephane.malandai authored
    0c452f98
  • stephane.malandai's avatar
    Update file Chap_2_objets_classes.pdf · c214f45a
    stephane.malandai authored
    c214f45a
  • stephane.malandai's avatar
    Update file serie1_corrigé.docx · c1921bb1
    stephane.malandai authored
    c1921bb1
  • stephane.malandai's avatar
    Update file README.md · e0c58e3d
    stephane.malandai authored
    e0c58e3d
  • stephane.malandai's avatar
    Update file README.md · 1146fd9b
    stephane.malandai authored
    1146fd9b
  • brian.crocoll's avatar
    Merge branch poo2024:main into main · 3f6d6e5e
    brian.crocoll authored
    3f6d6e5e
Showing
with 72 additions and 0 deletions
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.hepia</groupId>
<artifactId>template_maven</artifactId>
<version>1.0-SNAPSHOT</version>
<name>template_maven</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>19</version>
</dependency>
</dependencies>
<build>
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<plugins>
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>ch.hepia.App</mainClass>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
File added
File added
File added
File added