Skip to content

food2gether/shared-model

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shared-model

This repo contains shared code for all microservices by food2gether.

How to use

You might want to replace the variable reference with the version you want to use.

Maven

<project>
    <repositories>
        <repository>
            <id>jitpack</id>
            <name>Jitpack</name>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>
    
    <dependencies>
        <dependency>
            <groupId>com.github.food2gether</groupId>
            <artifactId>shared-model</artifactId>
            <version>X.Y.Z</version>
        </dependency>
    </dependencies>
    ...
</project>

Gradle

In your build.gradle.kts file:

repositories {
    maven {
        name = "jitpack"
        url = uri("https://jitpack.io")
    }
}

dependencies {
    implementation("com.github.food2gether:shared-model:X.Y.Z")
}

About

Shared code between our application components

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors 2

  •  
  •  

Languages