Skip to content

Commit 262894f

Browse files
committed
add repertoire destination main/java
1 parent f219d19 commit 262894f

27 files changed

+24
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repositories {
2626
dependencies {
2727
implementation 'com.google.guava:guava:22.0'
2828
testCompile group: 'junit', name: 'junit', version: '4.+'
29-
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.6'
29+
compile 'mysql:mysql-connector-java:5.1.37'
3030

3131
}
3232

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.societe.projet.menu;
2+
3+
public class Menu {
4+
5+
private int choix;
6+
7+
public int getChoix() {
8+
return choix;
9+
}
10+
11+
public void setChoix(int choix) {
12+
this.choix = choix;
13+
}
14+
15+
/**
16+
* *****************************************
17+
*
18+
* *****************************************
19+
*/
20+
21+
22+
23+
}

0 commit comments

Comments
 (0)