Skip to content
GitLab
Projets
Groupes
Sujets
Extraits de code
/
Aide
Aide
Support
Forum de la communauté
Raccourcis clavier
?
Proposer une rétroaction
Contribuer à GitLab
Connexion
Activer/désactiver la navigation
Menu
ma253450
mesurederéseauinteraction
Comparer les révisions
f6993f274d65f39be57d51fe5976c19322575d95...57ba00c3d5e0c50ed29f5b453b3da34f13def5a6
Commits (2)
message
· 06e2b1ad
ma253450
a écrit
nov. 26, 2025
06e2b1ad
nouveau
· 57ba00c3
ma253450
a écrit
nov. 26, 2025
57ba00c3
Masquer les modifications d'espaces
En ligne
Côte à côte
pom.xml
Voir le fichier @
57ba00c3
...
@@ -4,6 +4,10 @@
...
@@ -4,6 +4,10 @@
<groupId>
org.example
</groupId>
<groupId>
org.example
</groupId>
<artifactId>
untitled
</artifactId>
<artifactId>
untitled
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<version>
1.0-SNAPSHOT
</version>
<name>
Archetype - untitled
</name>
<packaging>
pom
</packaging>
<name>
Archetype - untitled
</name>
<url>
http://maven.apache.org
</url>
<url>
http://maven.apache.org
</url>
<modules>
<module>
reseau_interaction_tp1
</module>
</modules>
</project>
</project>
reseau_interaction_tp1/pom.xml
0 → 100644
Voir le fichier @
57ba00c3
<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>
<parent>
<groupId>
org.example
</groupId>
<artifactId>
untitled
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<artifactId>
reseau_interaction_tp1
</artifactId>
<packaging>
jar
</packaging>
<name>
reseau_interaction_tp1
</name>
<url>
http://maven.apache.org
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
src/main/resources/archetype-resources
/src/main/java/App.java
→
reseau_interaction_tp1
/src/main/java/
org/example/
App.java
Voir le fichier @
57ba00c3
package
main.java
;
package
org.example
;
/**
/**
* Hello world!
* Hello world!
...
...
src/main/resources/archetype-resources
/src/test/java/AppTest.java
→
reseau_interaction_tp1
/src/test/java/
org/example/
AppTest.java
Voir le fichier @
57ba00c3
package
$
org.example
;
package
org.example
;
import
junit.framework.Test
;
import
junit.framework.Test
;
import
junit.framework.TestCase
;
import
junit.framework.TestCase
;
...
...
src/main/resources/META-INF/maven/archetype.xml
supprimé
100644 → 0
Voir le fichier @
f6993f27
<archetype>
<id>
untitled
</id>
<sources>
<source>
src/main/java/App.java
</source>
</sources>
<testSources>
<source>
src/test/java/AppTest.java
</source>
</testSources>
</archetype>
src/main/resources/archetype-resources/pom.xml
supprimé
100644 → 0
Voir le fichier @
f6993f27
<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>
<groupId>
$org.example
</groupId>
<artifactId>
$untitled
</artifactId>
<version>
$1.0-SNAPSHOT
</version>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>