Skip to content

Commit e045075

Browse files
committed
Add maven support
1 parent 551886c commit e045075

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+45
-5
lines changed

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Distributed-Programming.iml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module type="JAVA_MODULE" version="4">
2+
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
33
<component name="Go" enabled="true" />
4-
<component name="NewModuleRootManager" inherit-compiler-output="true">
5-
<exclude-output />
4+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_17">
5+
<output url="file://$MODULE_DIR$/target/classes" />
6+
<output-test url="file://$MODULE_DIR$/target/test-classes" />
67
<content url="file://$MODULE_DIR$">
7-
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
8+
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
9+
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
10+
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
11+
<excludeFolder url="file://$MODULE_DIR$/${project.build.directory}/classes" />
12+
<excludeFolder url="file://$MODULE_DIR$/${project.build.directory}/test-classes" />
13+
<excludeFolder url="file://$MODULE_DIR$/target" />
814
</content>
915
<orderEntry type="jdk" jdkName="openjdk-17" jdkType="JavaSDK" />
1016
<orderEntry type="sourceFolder" forTests="false" />
17+
<orderEntry type="library" name="Maven: org.postgresql:postgresql:42.3.1" level="project" />
18+
<orderEntry type="library" scope="RUNTIME" name="Maven: org.checkerframework:checker-qual:3.5.0" level="project" />
1119
</component>
1220
</module>

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>groupId</groupId>
8+
<artifactId>Distributed-Programming</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>17</maven.compiler.source>
13+
<maven.compiler.target>17</maven.compiler.target>
14+
</properties>
15+
16+
<dependencies>
17+
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
18+
<dependency>
19+
<groupId>org.postgresql</groupId>
20+
<artifactId>postgresql</artifactId>
21+
<version>42.3.1</version>
22+
</dependency>
23+
</dependencies>
24+
25+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)