Skip to content

Commit

Permalink
Added 'sources' classifier in BOM
Browse files Browse the repository at this point in the history
  • Loading branch information
hpehl committed Apr 14, 2024
1 parent 0f1162f commit f9c12e3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- Added `sources` classifier in BOM

## [1.4.5] - 2024-04-13

### Fixed
Expand Down
16 changes: 5 additions & 11 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,67 +48,61 @@
<groupId>${project.groupId}</groupId>
<artifactId>elemento-core</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-core</artifactId>
<version>${project.version}</version>
<type>gwt-lib</type>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-flow</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-flow</artifactId>
<version>${project.version}</version>
<type>gwt-lib</type>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-mathml</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-mathml</artifactId>
<version>${project.version}</version>
<type>gwt-lib</type>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-router</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-router</artifactId>
<version>${project.version}</version>
<type>gwt-lib</type>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-router-processor</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-svg</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-svg</artifactId>
<version>${project.version}</version>
<type>gwt-lib</type>
<classifier>sources</classifier>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
2 changes: 0 additions & 2 deletions samples/flow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,10 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-core</artifactId>
<type>gwt-lib</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-flow</artifactId>
<type>gwt-lib</type>
</dependency>
<dependency>
<groupId>org.patternfly</groupId>
Expand Down
7 changes: 0 additions & 7 deletions samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@
<groupId>${project.groupId}</groupId>
<artifactId>elemento-todo-sample-common</artifactId>
<version>${project.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-todo-sample-common</artifactId>
<version>${project.version}</version>
<type>gwt-lib</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
1 change: 0 additions & 1 deletion samples/todo/gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>elemento-todo-sample-common</artifactId>
<type>gwt-lib</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down

0 comments on commit f9c12e3

Please sign in to comment.