Skip to content

Commit

Permalink
Fikse publisering (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen authored Mar 12, 2024
1 parent bb6f111 commit 2ef4b1d
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 24 deletions.
37 changes: 29 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Eclipse
.project
.classpath
.settings/
bin/

# IntelliJ
.idea
*.ipr
*.iml
*.iws

# Visual Studio Code
.vscode

# Compiled class file
*.class

Expand All @@ -18,14 +33,20 @@
*.zip
*.tar.gz
*.rar
*.iml

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/
/.classpath
/.project
/.flattened
/.settings
/.flattened*
/.idea
target/
.flattened
.settings
.flattened*


# Maven
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
release.properties
maven-eclipse.xml
.mvn/maven.config
.mvn/jvm.config
4 changes: 2 additions & 2 deletions beregningsregler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<version>3.0-SNAPSHOT</version>
</parent>

<name>Kalkulus :: Regelmodell</name>
<artifactId>kalkulus-beregningsregler</artifactId>
<name>Regelmodell</name>
<artifactId>beregningsregler</artifactId>
<packaging>jar</packaging>

<properties>
Expand Down
8 changes: 4 additions & 4 deletions kalkulator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<version>3.0-SNAPSHOT</version>
</parent>

<artifactId>kalkulus-kalkulator</artifactId>
<artifactId>kalkulator</artifactId>
<packaging>jar</packaging>
<name>Kalkulus :: Kalkulator</name>
<name>Kalkulator</name>

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
Expand All @@ -21,13 +21,13 @@
<!-- Interne avhengigheter -->
<dependency>
<groupId>no.nav.folketrygdloven.kalkulus</groupId>
<artifactId>kalkulus-kontrakt</artifactId>
<artifactId>kontrakt</artifactId>
</dependency>

<!-- Eksterne avhengigheter til andre NAV-prosjekter-->
<dependency>
<groupId>no.nav.folketrygdloven.kalkulus</groupId>
<artifactId>kalkulus-beregningsregler</artifactId>
<artifactId>beregningsregler</artifactId>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions kodeverk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<version>3.0-SNAPSHOT</version>
</parent>

<name>Kalkulus :: Kodeverk</name>
<name>Kodeverk</name>
<packaging>jar</packaging>
<artifactId>kalkulus-kodeverk</artifactId>
<artifactId>kodeverk</artifactId>

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
Expand Down
6 changes: 3 additions & 3 deletions kontrakt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<version>3.0-SNAPSHOT</version>
</parent>

<artifactId>kalkulus-kontrakt</artifactId>
<artifactId>kontrakt</artifactId>
<packaging>jar</packaging>
<name>Kalkulus :: Kontrakt</name>
<name>Kontrakt</name>

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
Expand All @@ -22,7 +22,7 @@
<!-- Interne avhengigheter -->
<dependency>
<groupId>no.nav.folketrygdloven.kalkulus</groupId>
<artifactId>kalkulus-kodeverk</artifactId>
<artifactId>kodeverk</artifactId>
</dependency>

<!-- Eksterne avhengigheter til andre prosjekter -->
Expand Down
35 changes: 30 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@
<dependencies>
<dependency>
<groupId>no.nav.folketrygdloven.kalkulus</groupId>
<artifactId>kalkulus-beregningsregler</artifactId>
<artifactId>beregningsregler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>no.nav.folketrygdloven.kalkulus</groupId>
<artifactId>kalkulus-kodeverk</artifactId>
<artifactId>kodeverk</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>no.nav.folketrygdloven.kalkulus</groupId>
<artifactId>kalkulus-kontrakt</artifactId>
<artifactId>kontrakt</artifactId>
<version>${project.version}</version>
</dependency>

Expand All @@ -88,7 +88,7 @@
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
<version>4.0.2</version>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -121,7 +121,7 @@
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.16.2</version>
<version>2.16.1</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down Expand Up @@ -294,6 +294,31 @@

</build>

<profiles>
<profile>
<id>sonar</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<scm>
<connection>scm:git:ssh://[email protected]:navikt/ft-beregning.git</connection>
<developerConnection>scm:git:ssh://[email protected]:navikt/ft-beregning.git
Expand Down

0 comments on commit 2ef4b1d

Please sign in to comment.