Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
etl-service-ccie-mvn
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jose Francisco Montiel Jimenez
etl-service-ccie-mvn
Commits
f1289317
Commit
f1289317
authored
Mar 06, 2025
by
David Coronilla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
se ajustan parametros de compilacion
parent
718c34ab
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
nb-configuration.xml
nb-configuration.xml
+10
-1
pom.xml
pom.xml
+2
-1
src/main/java/amx/ccie/etl/scheduler/CatalogoScheduler.java
src/main/java/amx/ccie/etl/scheduler/CatalogoScheduler.java
+1
-1
No files found.
nb-configuration.xml
View file @
f1289317
...
...
@@ -6,6 +6,7 @@ The configuration is intended to be shared among all the users of project and
therefore it is assumed to be part of version control checkout.
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
-->
<libraries
xmlns=
"http://www.netbeans.org/ns/cdnjs-libraries/1"
/>
<properties
xmlns=
"http://www.netbeans.org/ns/maven-properties-data/1"
>
<!--
Properties that influence various parts of the IDE, especially code formatting and the like.
...
...
@@ -13,8 +14,16 @@ You can copy and paste the single properties, into the pom.xml file and the IDE
That way multiple projects can share the same settings (useful for formatting rules for example).
Any value defined here will override the pom.xml file value but is only applicable to the current project.
-->
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
gfv
4ee7
</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
gfv
5ee8
</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_deploy_2e_server>
<netbeans.hint.jdkPlatform>
JDK_1.8
</netbeans.hint.jdkPlatform>
<org-netbeans-modules-maven-jaxws.rest_2e_config_2e_type>
ide
</org-netbeans-modules-maven-jaxws.rest_2e_config_2e_type>
<org-netbeans-modules-css-prep.less_2e_mappings>
/less:/css
</org-netbeans-modules-css-prep.less_2e_mappings>
<org-netbeans-modules-css-prep.less_2e_enabled>
false
</org-netbeans-modules-css-prep.less_2e_enabled>
<org-netbeans-modules-css-prep.sass_2e_enabled>
false
</org-netbeans-modules-css-prep.sass_2e_enabled>
<org-netbeans-modules-css-prep.sass_2e_compiler_2e_options/>
<org-netbeans-modules-css-prep.less_2e_compiler_2e_options/>
<org-netbeans-modules-css-prep.sass_2e_mappings>
/scss:/css
</org-netbeans-modules-css-prep.sass_2e_mappings>
<org-netbeans-modules-web-clientproject-api.js_2e_libs_2e_folder>
js/libs
</org-netbeans-modules-web-clientproject-api.js_2e_libs_2e_folder>
<org-netbeans-modules-javascript2-requirejs.enabled>
true
</org-netbeans-modules-javascript2-requirejs.enabled>
</properties>
</project-shared-configuration>
pom.xml
View file @
f1289317
...
...
@@ -6,7 +6,7 @@
<groupId>
amx.ccie.etl
</groupId>
<artifactId>
etl-service-ccie-mvn
</artifactId>
<version>
1.0
-SNAPSHOT
</version>
<version>
1.0
.0
</version>
<packaging>
war
</packaging>
<name>
etl-service-ccie-mvn
</name>
...
...
@@ -72,6 +72,7 @@
</dependencies>
<build>
<finalName>
${project.artifactId}
</finalName>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
...
...
src/main/java/amx/ccie/etl/scheduler/CatalogoScheduler.java
View file @
f1289317
...
...
@@ -26,7 +26,7 @@ public class CatalogoScheduler {
private
final
Logger
log
=
LogManager
.
getLogger
(
this
.
getClass
());
@Schedule
(
hour
=
"1
2"
,
minute
=
"14
"
,
second
=
"0"
,
persistent
=
false
)
@Schedule
(
hour
=
"1
3"
,
minute
=
"10
"
,
second
=
"0"
,
persistent
=
false
)
public
void
consultarCatalogoServicio
()
{
try
{
List
<
BitacoraDTO
>
bitacora
=
new
BitacoraDAO
().
getBitacora
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment