Skip to content

Commit

Permalink
Filled blank files again
Browse files Browse the repository at this point in the history
  • Loading branch information
fabapp2 committed Nov 3, 2023
1 parent e2c9580 commit 9969d7b
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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.dependency</groupId>
<artifactId>dependency-project</artifactId>
<version>1.0-SNAPSHOT</version>

<name>dependency-project</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<distributionManagement>
<repository>
<id>repository-snapshots</id>
<name>Snapshots Repository</name>
<url>http://localhost:${port}/snapshots</url>
</repository>
</distributionManagement>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?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.dependent</groupId>
<artifactId>dependent-project</artifactId>
<version>1.0-SNAPSHOT</version>

<name>dependent-project</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>com.example.dependency</groupId>
<artifactId>dependency-project</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>repository-snapshots</id>
<name>Snapshots Repository</name>
<url>http://localhost:${port}/snapshots</url>
</repository>
</repositories>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.example.dependent;

import com.example.dependency.DependencyClass;

public class DependentClass {
private DependencyClass dependencyClass;
}

0 comments on commit 9969d7b

Please sign in to comment.