Skip to content

Commit 4a9c13a

Browse files
authored
Add files via upload
0 parents  commit 4a9c13a

File tree

5 files changed

+202
-0
lines changed

5 files changed

+202
-0
lines changed

.classpath

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
<attribute name="test" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
22+
<attributes>
23+
<attribute name="maven.pomderived" value="true"/>
24+
</attributes>
25+
</classpathentry>
26+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
27+
<attributes>
28+
<attribute name="maven.pomderived" value="true"/>
29+
</attributes>
30+
</classpathentry>
31+
<classpathentry kind="output" path="target/classes"/>
32+
</classpath>

.project

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>confAnnot</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.springframework.ide.eclipse.core.springbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.m2e.core.maven2Builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.springframework.ide.eclipse.core.springnature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
28+
</natures>
29+
</projectDescription>

.springBeans

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<beansProjectDescription>
3+
<version>1</version>
4+
<pluginVersion><![CDATA[3.2.0.201303060654-RELEASE]]></pluginVersion>
5+
<configSuffixes>
6+
<configSuffix><![CDATA[xml]]></configSuffix>
7+
</configSuffixes>
8+
<enableImports><![CDATA[false]]></enableImports>
9+
<configs>
10+
</configs>
11+
<configSets>
12+
</configSets>
13+
</beansProjectDescription>

confAnnot.iml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
4+
<output url="file://$MODULE_DIR$/target/classes" />
5+
<output-test url="file://$MODULE_DIR$/target/test-classes" />
6+
<content url="file://$MODULE_DIR$">
7+
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
8+
<excludeFolder url="file://$MODULE_DIR$/target" />
9+
</content>
10+
<orderEntry type="inheritedJdk" />
11+
<orderEntry type="sourceFolder" forTests="false" />
12+
<orderEntry type="library" name="Maven: org.springframework:spring-context:5.2.3.RELEASE" level="project" />
13+
<orderEntry type="library" name="Maven: org.springframework:spring-aop:5.2.3.RELEASE" level="project" />
14+
<orderEntry type="library" name="Maven: org.springframework:spring-beans:5.2.3.RELEASE" level="project" />
15+
<orderEntry type="library" name="Maven: org.springframework:spring-core:5.2.3.RELEASE" level="project" />
16+
<orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.2.3.RELEASE" level="project" />
17+
<orderEntry type="library" name="Maven: org.springframework:spring-expression:5.2.3.RELEASE" level="project" />
18+
<orderEntry type="library" name="Maven: org.springframework:spring-tx:5.2.3.RELEASE" level="project" />
19+
<orderEntry type="library" name="Maven: org.hibernate:hibernate-core:5.4.1.Final" level="project" />
20+
<orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.2.Final" level="project" />
21+
<orderEntry type="library" name="Maven: javax.persistence:javax.persistence-api:2.2" level="project" />
22+
<orderEntry type="library" name="Maven: org.javassist:javassist:3.24.0-GA" level="project" />
23+
<orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.9.5" level="project" />
24+
<orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" />
25+
<orderEntry type="library" name="Maven: org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final" level="project" />
26+
<orderEntry type="library" name="Maven: org.jboss:jandex:2.0.5.Final" level="project" />
27+
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.3.4" level="project" />
28+
<orderEntry type="library" name="Maven: javax.activation:javax.activation-api:1.2.0" level="project" />
29+
<orderEntry type="library" name="Maven: org.dom4j:dom4j:2.1.1" level="project" />
30+
<orderEntry type="library" name="Maven: org.hibernate.common:hibernate-commons-annotations:5.1.0.Final" level="project" />
31+
<orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.3.1" level="project" />
32+
<orderEntry type="library" name="Maven: org.glassfish.jaxb:jaxb-runtime:2.3.1" level="project" />
33+
<orderEntry type="library" name="Maven: org.glassfish.jaxb:txw2:2.3.1" level="project" />
34+
<orderEntry type="library" name="Maven: com.sun.istack:istack-commons-runtime:3.0.7" level="project" />
35+
<orderEntry type="library" name="Maven: org.jvnet.staxex:stax-ex:1.8" level="project" />
36+
<orderEntry type="library" name="Maven: com.sun.xml.fastinfoset:FastInfoset:1.2.15" level="project" />
37+
<orderEntry type="library" name="Maven: org.hibernate:hibernate-entitymanager:5.2.8.Final" level="project" />
38+
<orderEntry type="library" name="Maven: dom4j:dom4j:1.6.1" level="project" />
39+
<orderEntry type="library" name="Maven: org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final" level="project" />
40+
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-jpa:2.2.4.RELEASE" level="project" />
41+
<orderEntry type="library" name="Maven: org.springframework:spring-orm:5.2.3.RELEASE" level="project" />
42+
<orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.2.3.RELEASE" level="project" />
43+
<orderEntry type="library" name="Maven: org.aspectj:aspectjrt:1.9.5" level="project" />
44+
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.26" level="project" />
45+
<orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.2.4.RELEASE" level="project" />
46+
<orderEntry type="library" name="Maven: mysql:mysql-connector-java:8.0.19" level="project" />
47+
<orderEntry type="library" name="Maven: com.google.protobuf:protobuf-java:3.6.1" level="project" />
48+
</component>
49+
</module>

pom.xml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>org.springframework.samples</groupId>
4+
<artifactId>confAnnot</artifactId>
5+
<version>0.0.1-SNAPSHOT</version>
6+
7+
<properties>
8+
9+
<!-- Generic properties -->
10+
<java.version>1.8</java.version>
11+
12+
<maven.compiler.source>1.8</maven.compiler.source>
13+
<maven.compiler.target>1.8</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16+
17+
<!-- Spring -->
18+
<spring-framework.version>5.2.3.RELEASE</spring-framework.version>
19+
20+
<!-- Hibernate / JPA -->
21+
<hibernate.version>5.2.8.Final</hibernate.version>
22+
23+
24+
</properties>
25+
26+
<dependencies>
27+
<!-- Spring and Transactions -->
28+
<dependency>
29+
<groupId>org.springframework</groupId>
30+
<artifactId>spring-context</artifactId>
31+
<version>5.2.3.RELEASE</version>
32+
</dependency>
33+
34+
<!-- https://mvnrepository.com/artifact/org.springframework/spring-tx -->
35+
<dependency>
36+
<groupId>org.springframework</groupId>
37+
<artifactId>spring-tx</artifactId>
38+
<version>5.2.3.RELEASE</version>
39+
</dependency>
40+
41+
42+
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
43+
<dependency>
44+
<groupId>org.hibernate</groupId>
45+
<artifactId>hibernate-core</artifactId>
46+
<version>5.4.1.Final</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.hibernate</groupId>
50+
<artifactId>hibernate-entitymanager</artifactId>
51+
<version>${hibernate.version}</version>
52+
</dependency>
53+
54+
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa -->
55+
<dependency>
56+
<groupId>org.springframework.data</groupId>
57+
<artifactId>spring-data-jpa</artifactId>
58+
<version>2.2.4.RELEASE</version>
59+
</dependency>
60+
61+
62+
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons -->
63+
<dependency>
64+
<groupId>org.springframework.data</groupId>
65+
<artifactId>spring-data-commons</artifactId>
66+
<version>2.2.4.RELEASE</version>
67+
</dependency>
68+
69+
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
70+
<dependency>
71+
<groupId>mysql</groupId>
72+
<artifactId>mysql-connector-java</artifactId>
73+
<version>8.0.19</version>
74+
</dependency>
75+
76+
77+
</dependencies>
78+
79+
</project>

0 commit comments

Comments
 (0)