Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/target/
/.classpath
/.project
/.settings
1 change: 0 additions & 1 deletion lutece-extends-module-extend-actionbar
Submodule lutece-extends-module-extend-actionbar deleted from 54b437
19 changes: 13 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<parent>
<artifactId>lutece-global-pom</artifactId>
<groupId>fr.paris.lutece.tools</groupId>
<version>7.0.2</version>
<version>8.0.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>fr.paris.lutece.plugins</groupId>
<artifactId>module-extend-actionbar</artifactId>
<packaging>lutece-plugin</packaging>
<version>1.1.4-SNAPSHOT</version>
<version>2.0.0-SNAPSHOT</version>
<name>Lutece Extend Action Bar module</name>

<repositories>
Expand All @@ -29,21 +29,28 @@
</snapshots>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>fr.paris.lutece</groupId>
<artifactId>lutece-core</artifactId>
<version>[7.0.0-SNAPSHOT,7.9.9)</version>
<version>[8.0.0-SNAPSHOT,)</version>
<type>lutece-core</type>
</dependency>

<dependency>
<groupId>fr.paris.lutece.plugins</groupId>
<artifactId>plugin-extend</artifactId>
<version>[1.0.1-SNAPSHOT,1.9.9)</version>
<version>[2.0.0-SNAPSHOT,)</version>
<type>lutece-plugin</type>
</dependency>

<dependency>
<groupId>fr.paris.lutece.plugins</groupId>
<artifactId>library-lutece-unit-testing</artifactId>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<properties>
Expand Down
Loading