diff --git a/microservices/auth/pom.xml b/microservices/auth/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..5470e3bfb83f00e1b0396ca8cac0160440c5847a --- /dev/null +++ b/microservices/auth/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>auth</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Auth Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/correction_qcm/pom.xml b/microservices/correction_qcm/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..90130afb958195490a8fa1b27aaa696182eec2d3 --- /dev/null +++ b/microservices/correction_qcm/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>correction_qcm</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Correction_qcm Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/creation_qcm/pom.xml b/microservices/creation_qcm/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..c40516e47d99b4af8cefae1dab28c744c7e638db --- /dev/null +++ b/microservices/creation_qcm/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>creation_qcm</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Creation_qcm Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/frontend/pom.xml b/microservices/frontend/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..2147b8282d60793474f1673f696a5dbcc1351006 --- /dev/null +++ b/microservices/frontend/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>frontend</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>frontend Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/helloworld/pom.xml b/microservices/helloworld/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..e4e204606430cccbe90612f4ac2fad9c037b0095 --- /dev/null +++ b/microservices/helloworld/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>helloworld</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Helloworld Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/navigation_qcm/pom.xml b/microservices/navigation_qcm/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..e276ca8ac2939e24d4f0e0e72de5d28e8620b3bc --- /dev/null +++ b/microservices/navigation_qcm/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>navigation_qcm</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Navigation_qcm Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/realise_qcm/pom.xml b/microservices/realise_qcm/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..28e27b9815936f095f7dc35d9f2cfc78acea5fd7 --- /dev/null +++ b/microservices/realise_qcm/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>realise_qcm</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Realise_qcm Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/microservices/search_qcm/pom.xml b/microservices/search_qcm/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..f0ce45b562719f052fe7ee6897e6afef337350c2 --- /dev/null +++ b/microservices/search_qcm/pom.xml @@ -0,0 +1,36 @@ +<?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>com.example</groupId> + <artifactId>search_qcm</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>Search_qcm Microservice</name> + + <dependencies> + <!-- Ajoute ici les dépendances spécifiques à ton microservice --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>2.5.4</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/pom.xml b/pom.xml index 5a63e2ff9f42630d08da15ebbd5273f636170ced..b202738bdaab3d6cd824a0358492b76977d7dfd1 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,8 @@ <groupId>com.example</groupId> <artifactId>test-pipeline</artifactId> <version>1.0-SNAPSHOT</version> - <packaging>jar</packaging> + <!--<packaging>jar</packaging>--> + <packaging>pom</packaging> <name>Test Pipeline</name> <url>http://maven.apache.org</url>