-
Notifications
You must be signed in to change notification settings - Fork 0
Initial implementation #1
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,10 +5,10 @@ | |||||||||||||
| <modelVersion>4.0.0</modelVersion> | ||||||||||||||
|
|
||||||||||||||
| <groupId>com.flowingcode.vaadin.addons</groupId> | ||||||||||||||
| <artifactId>template-addon</artifactId> | ||||||||||||||
| <artifactId>cron-expression-editor-addon</artifactId> | ||||||||||||||
| <version>1.0.0-SNAPSHOT</version> | ||||||||||||||
| <name>Template Add-on</name> | ||||||||||||||
| <description>Template Add-on for Vaadin Flow</description> | ||||||||||||||
| <name>Cron Expression Editor Add-on</name> | ||||||||||||||
| <description>Component that assists in the generation of cron expressions</description> | ||||||||||||||
| <url>https://www.flowingcode.com/en/open-source/</url> | ||||||||||||||
|
|
||||||||||||||
| <properties> | ||||||||||||||
|
|
@@ -20,8 +20,10 @@ | |||||||||||||
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||||||||||||||
| <drivers.dir>${project.basedir}/drivers</drivers.dir> | ||||||||||||||
| <jetty.version>11.0.20</jetty.version> | ||||||||||||||
| <cron.expression.descriptor.version>1.2.10</cron.expression.descriptor.version> | ||||||||||||||
| <day.of.week.selector.version>1.0.0</day.of.week.selector.version> | ||||||||||||||
| <spring.context.version>6.2.5</spring.context.version> | ||||||||||||||
|
Comment on lines
+23
to
+25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify dependency versions for security and compatibility. Ensure the specified versions are current and secure. 🏁 Script executed: #!/bin/bash
# Check Maven Central for latest versions of the new dependencies
echo "Checking cron-expression-descriptor latest version:"
curl -s "https://search.maven.org/solrsearch/select?q=g:it.burning+AND+a:cron-expression-descriptor&rows=1&wt=json" | jq -r '.response.docs[0].latestVersion // "Not found"'
echo "Checking day-of-week-selector-addon latest version:"
curl -s "https://search.maven.org/solrsearch/select?q=g:com.flowingcode.vaadin.addons+AND+a:day-of-week-selector-addon&rows=1&wt=json" | jq -r '.response.docs[0].latestVersion // "Not found"'
echo "Checking spring-context latest version:"
curl -s "https://search.maven.org/solrsearch/select?q=g:org.springframework+AND+a:spring-context&rows=1&wt=json" | jq -r '.response.docs[0].latestVersion // "Not found"'Length of output: 877 Dependency Version Verification Results
Please update the day-of-week-selector version and confirm your intended strategy for Spring Context: Suggested diff: --- pom.xml
+++ pom.xml
@@ lines 23-25
- <day.of.week.selector.version>1.0.0</day.of.week.selector.version>
+ <day.of.week.selector.version>1.0.1</day.of.week.selector.version>📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @coderabbitai please create issue There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain@javier-godoy I've created a GitHub issue to track the dependency version updates identified in the code review. The issue includes details about updating the day-of-week-selector-addon to version 1.0.1 and considerations for the spring-context version strategy. 🏁 Script executed: Length of output: 59 @javier-godoy Perfect! I've successfully created issue #4 to track the dependency version updates: #4 The issue includes:
The issue is now ready for tracking and can be addressed in a future PR. 🐰✨ Happy to help organize the follow-up work! |
||||||||||||||
| <flowingcode.commons.demo.version>4.2.0</flowingcode.commons.demo.version> | ||||||||||||||
| <frontend.hotdeploy>true</frontend.hotdeploy> | ||||||||||||||
| </properties> | ||||||||||||||
|
|
||||||||||||||
| <organization> | ||||||||||||||
|
|
@@ -117,6 +119,21 @@ | |||||||||||||
| </pluginRepositories> | ||||||||||||||
|
|
||||||||||||||
| <dependencies> | ||||||||||||||
| <dependency> | ||||||||||||||
| <groupId>com.flowingcode.vaadin.addons</groupId> | ||||||||||||||
| <artifactId>day-of-week-selector-addon</artifactId> | ||||||||||||||
| <version>${day.of.week.selector.version}</version> | ||||||||||||||
| </dependency> | ||||||||||||||
| <dependency> | ||||||||||||||
| <groupId>org.springframework</groupId> | ||||||||||||||
| <artifactId>spring-context</artifactId> | ||||||||||||||
| <version>${spring.context.version}</version> | ||||||||||||||
| </dependency> | ||||||||||||||
| <dependency> | ||||||||||||||
| <groupId>it.burning</groupId> | ||||||||||||||
| <artifactId>cron-expression-descriptor</artifactId> | ||||||||||||||
| <version>${cron.expression.descriptor.version}</version> | ||||||||||||||
| </dependency> | ||||||||||||||
| <dependency> | ||||||||||||||
| <groupId>com.vaadin</groupId> | ||||||||||||||
| <artifactId>vaadin-core</artifactId> | ||||||||||||||
|
|
@@ -264,15 +281,16 @@ | |||||||||||||
| <scan>3</scan> | ||||||||||||||
| <!-- Use test scope because the UI/demo classes are in the test package. --> | ||||||||||||||
| <useTestScope>true</useTestScope> | ||||||||||||||
| <webApp> | ||||||||||||||
| <resourceBases> | ||||||||||||||
| <resourceBase>src/test/resources/META-INF/resources</resourceBase> | ||||||||||||||
| <resourceBase>src/main/resources/META-INF/resources</resourceBase> | ||||||||||||||
| </resourceBases> | ||||||||||||||
| </webApp> | ||||||||||||||
| <supportedPackagings> | ||||||||||||||
| <supportedPackaging>jar</supportedPackaging> | ||||||||||||||
| </supportedPackagings> | ||||||||||||||
| <systemProperties> | ||||||||||||||
| <vaadin.frontend.hotdeploy>true</vaadin.frontend.hotdeploy> | ||||||||||||||
| <systemProperty> | ||||||||||||||
| <key>vaadin.i18n.provider</key> | ||||||||||||||
| <value>com.flowingcode.vaadin.addons.cronexpressioneditor.TranslationProvider</value> | ||||||||||||||
| </systemProperty> | ||||||||||||||
| </systemProperties> | ||||||||||||||
| </configuration> | ||||||||||||||
| </plugin> | ||||||||||||||
| </plugins> | ||||||||||||||
|
|
||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.