Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joseph NISON--GUYON
Not Alone
Commits
916e461d
Commit
916e461d
authored
Sep 18, 2020
by
Gerson Sunyé
Browse files
Initial commit
parent
e0c5119c
Changes
10
Hide whitespace changes
Inline
Side-by-side
not-alone-doc/pom.xml
0 → 100644
View file @
916e461d
<?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>
not-alone
</artifactId>
<groupId>
fr.univnantes.alma
</groupId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
not-alone-doc
</artifactId>
<build>
<plugins>
<plugin>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctor-maven-plugin
</artifactId>
<version>
2.1.0
</version>
<dependencies>
<dependency>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctorj-pdf
</artifactId>
<version>
1.5.3
</version>
</dependency>
<dependency>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctorj-diagram
</artifactId>
<version>
2.0.2
</version>
</dependency>
</dependencies>
<configuration>
<sourceDirectory>
src/doc/asciidoc
</sourceDirectory>
<requires>
<require>
asciidoctor-diagram
</require>
</requires>
<attributes>
<sourcedir>
${project.build.sourceDirectory}
</sourcedir>
</attributes>
</configuration>
<executions>
<execution>
<id>
generate-pdf-doc
</id>
<phase>
pre-site
</phase>
<goals>
<goal>
process-asciidoc
</goal>
</goals>
<configuration>
<backend>
pdf
</backend>
<!--
<sourceHighlighter>coderay</sourceHighlighter>
-->
<attributes>
<icons>
font
</icons>
<pagenums/>
<toc/>
<idprefix/>
<idseparator>
-
</idseparator>
</attributes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
not-alone-doc/src/doc/asciidoc/_sections/analyse.adoc
0 → 100644
View file @
916e461d
= Analyse du domaine
not-alone-doc/src/doc/asciidoc/_sections/architecture.adoc
0 → 100644
View file @
916e461d
= Architecture
== Physical View
- Nodes, artifacts for Hearthstone
- Specification Level Deployment Diagram
- Instance Level Deployment Diagram
== Reliability View
- Limit conditions forecast:
- Initializations
- Finalization
- Failure management and restart.
not-alone-doc/src/doc/asciidoc/_sections/composants.adoc
0 → 100644
View file @
916e461d
= Conception préliminaire
not-alone-doc/src/doc/asciidoc/_sections/conception.adoc
0 → 100644
View file @
916e461d
= Conception détaillée
not-alone-doc/src/doc/asciidoc/_sections/termes.adoc
0 → 100644
View file @
916e461d
= Termes
[.small]
[width="100%",cols="25%,25%,25%,25%",]
|===
|*Terme*
|*Description courte*
|*Signification*
|*Exemples*
| Créature
| a
| ax
|
|===
not-alone-doc/src/doc/asciidoc/main.adoc
0 → 100644
View file @
916e461d
= Projet Not Alone
:imagesdir: images
:includedir: _sections
include::{includedir}/analyse.adoc[leveloffset=+1]
include::{includedir}/composants.adoc[leveloffset=+1]
include::{includedir}/conception.adoc[leveloffset=+1]
include::{includedir}/termes.adoc[leveloffset=+1]
not-alone-server/pom.xml
0 → 100644
View file @
916e461d
<?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/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
fr.univnantes.alma
</groupId>
<artifactId>
not-alone
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<artifactId>
not-alone-server
</artifactId>
<dependencies>
<dependency>
<groupId>
org.mockito
</groupId>
<artifactId>
mockito-all
</artifactId>
<version>
1.9.5
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-websocket
</artifactId>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
webjars-locator-core
</artifactId>
</dependency>
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<scope>
runtime
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-test
</artifactId>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
sockjs-client
</artifactId>
<version>
1.0.2
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
stomp-websocket
</artifactId>
<version>
2.3.3
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
bootstrap
</artifactId>
<version>
3.3.7
</version>
</dependency>
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
jquery
</artifactId>
<version>
3.1.0
</version>
</dependency>
<dependency>
<groupId>
com.h2database
</groupId>
<artifactId>
h2
</artifactId>
<scope>
runtime
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>
1.8
</maven.compiler.source>
<maven.compiler.target>
1.8
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
not-alone-web/pom.xml
0 → 100644
View file @
916e461d
<?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>
not-alone
</artifactId>
<groupId>
fr.univnantes.alma
</groupId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
not-alone-web
</artifactId>
<build>
<plugins>
<plugin>
<groupId>
com.github.eirslett
</groupId>
<artifactId>
frontend-maven-plugin
</artifactId>
<version>
1.10.0
</version>
<configuration>
<workingDirectory>
./
</workingDirectory>
<nodeVersion>
v14.11.0
</nodeVersion>
<npmVersion>
6.14.8
</npmVersion>
</configuration>
<executions>
<execution>
<id>
install node and npm
</id>
<goals>
<goal>
install-node-and-npm
</goal>
</goals>
</execution>
<execution>
<id>
npm install
</id>
<goals>
<goal>
npm
</goal>
</goals>
</execution>
<execution>
<id>
npm run build
</id>
<goals>
<goal>
npm
</goal>
</goals>
<configuration>
<arguments>
run build
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
pom.xml
0 → 100644
View file @
916e461d
<?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>
fr.univnantes.alma
</groupId>
<artifactId>
not-alone
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<packaging>
pom
</packaging>
<name>
Not Alone
</name>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.2.1.RELEASE
</version>
</parent>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<maven.compiler.source>
1.9
</maven.compiler.source>
<maven.compiler.target>
1.9
</maven.compiler.target>
<commons.version>
1.0.5
</commons.version>
</properties>
<modules>
<module>
not-alone-doc
</module>
<module>
not-alone-server
</module>
<module>
not-alone-web
</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.1
</version>
</plugin>
<plugin>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctor-maven-plugin
</artifactId>
<version>
2.1.0
</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctorj
</artifactId>
<version>
2.4.1
</version>
</dependency>
<dependency>
<groupId>
org.asciidoctor
</groupId>
<artifactId>
asciidoctorj-pdf
</artifactId>
<version>
1.5.3
</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment