Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Bom #13755

Merged
merged 5 commits into from
Oct 15, 2024
Merged

Fix Bom #13755

merged 5 commits into from
Oct 15, 2024

Conversation

codeconsole
Copy link
Contributor

@codeconsole codeconsole commented Oct 14, 2024

Makes grails-gradle-plugin a dependency and not a plugin
Removes exclusions no longer needed due to the dependencies should not have been dependencies in the first place.

build.gradle Outdated
group : 'org.grails',
names : ['grails-gradle-plugin'],
modules: ['']
],
'fieldsPlugin' : [version: fieldsPluginVersion,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we also move the fields plugin to plugins.properties? fields was probably added here because it was using group io.github.gpc at the time of inclusion. Now that fields is using org.grails.plugins we can delete it here and add fields=6.0.0-SNAPSHOT to plugins.properties instead. Then we should also be able to remove fieldsPluginVersion=6.0.0-SNAPSHOT from gradle.properties.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great idea!

@codeconsole
Copy link
Contributor Author

@matrei I see you approved it, let's see if this thing works. lol

@codeconsole codeconsole merged commit 99535ef into grails:7.0.x Oct 15, 2024
11 checks passed
@@ -1,12 +1,12 @@
cache=8.0.0-SNAPSHOT
fieldsPluginVersion=6.0.0-SNAPSHOT
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the property must be fields=6.0.0-SNAPSHOT as the artifactId is taken from the property name.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops! You shouldn't have pre-approved lol

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's what happens when I copy and paste while talking to 3 people at the same time. 🤦

@codeconsole
Copy link
Contributor Author

codeconsole commented Oct 15, 2024

copy and paste fix

ab1b7e9

@jamesfredley
Copy link
Contributor

Tested with ./gradlew grails-bom:generatePomFileForMavenPublication and reviewed /grails-bom/build/publications/maven/pom-default.xml and fields and grails-gradle-plugin look good.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.grails</groupId>
  <artifactId>grails-bom</artifactId>
  <version>7.0.0-SNAPSHOT</version>
  <packaging>pom</packaging>
  <name>Grails® framework</name>
  <description>Grails Web Application Framework</description>
  <url>https://grails.org/</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>scm:git@github.com:grails/grails-core.git</url>
    <connection>scm:git@github.com:grails/grails-core.git</connection>
    <developerConnection>scm:git@github.com:grails/grails-core.git</developerConnection>
  </scm>
  <developers>
    <developer>
      <id>puneetbehl</id>
      <name>Puneet Behl</name>
      <email>behlp@objectcomputing.com</email>
    </developer>
  </developers>
  <properties>
    <gorm.neo4j.version>8.1.0</gorm.neo4j.version>
    <cache.version>8.0.0-SNAPSHOT</cache.version>
    <scaffolding.version>6.0.0-SNAPSHOT</scaffolding.version>
    <views-markup.version>4.0.0-SNAPSHOT</views-markup.version>
    <geb.version>5.0.0-SNAPSHOT</geb.version>
    <rxjava2.version>2.0.0</rxjava2.version>
    <gorm.mongodb.version>9.0.0-SNAPSHOT</gorm.mongodb.version>
    <views-json-templates.version>4.0.0-SNAPSHOT</views-json-templates.version>
    <gorm.hibernate5.version>9.0.0-SNAPSHOT</gorm.hibernate5.version>
    <views-json.version>4.0.0-SNAPSHOT</views-json.version>
    <fields.version>6.0.0-SNAPSHOT</fields.version>
    <rxjava.version>1.1.1</rxjava.version>
    <grailsGradlePlugin.version>7.0.0-SNAPSHOT</grailsGradlePlugin.version>
    <jakarta-annotation.version>3.0.0</jakarta-annotation.version>
    <mongodb.version>5.1.4</mongodb.version>
    <mongodb.bson.version>5.1.4</mongodb.bson.version>
    <gorm.version>9.0.0-SNAPSHOT</gorm.version>
    <gorm.hibernate.version>9.0.0-SNAPSHOT</gorm.hibernate.version>
    <groovy.version>4.0.23</groovy.version>
    <spring.version>6.1.13</spring.version>
    <directoryWatcher.version>0.18.0</directoryWatcher.version>
    <springLoaded.version>1.2.8.RELEASE</springLoaded.version>
    <async.version>6.0.0-SNAPSHOT</async.version>
    <asyncImpls.version>6.0.0-SNAPSHOT</asyncImpls.version>
    <snakeyaml.version>2.3</snakeyaml.version>
    <spock.version>2.3-groovy-4.0</spock.version>
    <gsp.version>7.0.0-SNAPSHOT</gsp.version>
    <testingSupport.version>4.0.0-SNAPSHOT</testingSupport.version>
    <viewsJsonTestingSupport.version>4.0.0-SNAPSHOT</viewsJsonTestingSupport.version>
    <h2.version>2.3.232</h2.version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-bootstrap</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-codecs</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-console</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-core</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-databinding</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-dependencies</artifactId>
        <version>7.0.0-SNAPSHOT</version>
        <type>pom</type>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-docs</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-encoder</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-gradle-model</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-logging</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-codecs</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-controllers</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-databinding</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-datasource</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-domain-class</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-i18n</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-interceptors</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-mimetypes</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-rest</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-services</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-url-mappings</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-plugin-validation</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-shell</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-spring</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-test</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-test-suite-base</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-test-suite-persistence</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-test-suite-uber</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-test-suite-web</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web-boot</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web-common</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web-databinding</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web-mvc</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web-url-mappings</artifactId>
        <version>7.0.0-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-gradle-plugin</artifactId>
        <version>${grailsGradlePlugin.version}</version>
      </dependency>
      <dependency>
        <groupId>jakarta.annotation</groupId>
        <artifactId>jakarta.annotation-api</artifactId>
        <version>${jakarta-annotation.version}</version>
      </dependency>
      <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongodb-driver-core</artifactId>
        <version>${mongodb.version}</version>
      </dependency>
      <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongodb-driver-sync</artifactId>
        <version>${mongodb.version}</version>
      </dependency>
      <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>bson</artifactId>
        <version>${mongodb.bson.version}</version>
      </dependency>
      <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>bson-record-codec</artifactId>
        <version>${mongodb.bson.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-async</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-core</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-web</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm-async</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm-support</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm-rx</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm-test</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm-validation</artifactId>
        <version>${gorm.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-datastore-gorm-hibernate5</artifactId>
        <version>${gorm.hibernate.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-xml</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-swing</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-console</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-json</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-ant</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-sql</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-templates</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-nio</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-dateutil</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.apache.groovy</groupId>
        <artifactId>groovy-macro</artifactId>
        <version>${groovy.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aop</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aspects</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context-support</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-expression</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-instrument</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jms</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-messaging</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-oxm</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-websocket</artifactId>
        <version>${spring.version}</version>
      </dependency>
      <dependency>
        <groupId>io.methvin</groupId>
        <artifactId>directory-watcher</artifactId>
        <version>${directoryWatcher.version}</version>
      </dependency>
      <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>springloaded</artifactId>
        <version>${springLoaded.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>async</artifactId>
        <version>${async.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>events</artifactId>
        <version>${async.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-async-gpars</artifactId>
        <version>${asyncImpls.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-events-gpars</artifactId>
        <version>${asyncImpls.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-async-rxjava</artifactId>
        <version>${asyncImpls.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-events-rxjava</artifactId>
        <version>${asyncImpls.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-async-rxjava2</artifactId>
        <version>${asyncImpls.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-events-rxjava2</artifactId>
        <version>${asyncImpls.version}</version>
      </dependency>
      <dependency>
        <groupId>org.yaml</groupId>
        <artifactId>snakeyaml</artifactId>
        <version>${snakeyaml.version}</version>
      </dependency>
      <dependency>
        <groupId>org.spockframework</groupId>
        <artifactId>spock-core</artifactId>
        <version>${spock.version}</version>
      </dependency>
      <dependency>
        <groupId>org.spockframework</groupId>
        <artifactId>spock-spring</artifactId>
        <version>${spock.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>gsp</artifactId>
        <version>${gsp.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-testing-support</artifactId>
        <version>${testingSupport.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-gorm-testing-support</artifactId>
        <version>${testingSupport.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>grails-web-testing-support</artifactId>
        <version>${testingSupport.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails</groupId>
        <artifactId>views-json-testing-support</artifactId>
        <version>${viewsJsonTestingSupport.version}</version>
      </dependency>
      <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <version>${h2.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>neo4j</artifactId>
        <version>${gorm.neo4j.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>cache</artifactId>
        <version>${cache.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>scaffolding</artifactId>
        <version>${scaffolding.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>views-markup</artifactId>
        <version>${views-markup.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>geb</artifactId>
        <version>${geb.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>rxjava2</artifactId>
        <version>${rxjava2.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>mongodb</artifactId>
        <version>${gorm.mongodb.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>views-json-templates</artifactId>
        <version>${views-json-templates.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>hibernate5</artifactId>
        <version>${gorm.hibernate5.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>views-json</artifactId>
        <version>${views-json.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>fields</artifactId>
        <version>${fields.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.plugins</groupId>
        <artifactId>rxjava</artifactId>
        <version>${rxjava.version}</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>rest-api</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>angular</artifactId>
        <version>10.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>plugin</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>web</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>vue</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>profile</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>react</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>web-plugin</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>rest-api-plugin</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
      <dependency>
        <groupId>org.grails.profiles</groupId>
        <artifactId>base</artifactId>
        <version>7.0.1-SNAPSHOT</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
</project>

@codeconsole
Copy link
Contributor Author

codeconsole commented Oct 15, 2024

@jamesfredley thanks for verifying 😄

@jamesfredley jamesfredley linked an issue Oct 15, 2024 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix bom generation
4 participants