generator-jhipster 7.2.0 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/environment-builder.js +1 -0
- package/cli/import-jdl.js +2 -2
- package/cli/jdl.js +1 -0
- package/generators/bootstrap/index.js +2 -1
- package/generators/client/__workflow/devserver-angular.json +1 -1
- package/generators/client/__workflow/devserver-react.json +1 -1
- package/generators/client/__workflow/devserver-vue.json +1 -1
- package/generators/client/files-vue.js +2 -0
- package/generators/client/index.js +69 -0
- package/generators/client/templates/angular/package.json +12 -12
- package/generators/client/templates/angular/package.json.ejs +2 -1
- package/generators/client/templates/angular/src/main/webapp/app/admin/configuration/configuration.service.spec.ts.ejs +50 -52
- package/generators/client/templates/angular/src/main/webapp/app/admin/logs/logs.service.spec.ts.ejs +19 -21
- package/generators/client/templates/angular/src/main/webapp/app/admin/metrics/metrics.service.spec.ts.ejs +62 -64
- package/generators/client/templates/angular/src/main/webapp/app/admin/user-management/service/user-management.service.spec.ts.ejs +41 -43
- package/generators/client/templates/angular/src/main/webapp/app/app.module.ts.ejs +3 -0
- package/generators/client/templates/angular/src/main/webapp/app/core/auth/account.service.spec.ts.ejs +178 -180
- package/generators/client/templates/angular/src/main/webapp/app/core/config/application-config.service.ts.ejs +9 -0
- package/generators/client/templates/angular/src/main/webapp/app/entities/user/user.service.spec.ts.ejs +87 -89
- package/generators/client/templates/angular/webpack/webpack.custom.js.ejs +2 -3
- package/generators/client/templates/common/README.md.jhi.client.ejs +34 -0
- package/generators/client/templates/common/package.json +3 -3
- package/generators/client/templates/react/package.json +29 -29
- package/generators/client/templates/react/package.json.ejs +1 -1
- package/generators/client/templates/vue/package.json +22 -22
- package/generators/client/templates/vue/package.json.ejs +1 -1
- package/generators/client/templates/vue/src/main/webapp/app/account/account.service.ts.ejs +2 -2
- package/generators/client/templates/vue/src/main/webapp/app/admin/configuration/configuration.service.ts.ejs +1 -1
- package/generators/client/templates/vue/src/main/webapp/app/admin/tracker/tracker.service.ts.ejs +5 -4
- package/generators/client/templates/vue/src/main/webapp/app/admin/user-management/user-management-edit.component.ts.ejs +9 -0
- package/generators/client/templates/vue/src/main/webapp/app/admin/user-management/user-management-view.component.ts.ejs +5 -0
- package/generators/client/templates/vue/src/main/webapp/app/admin/user-management/user-management.component.ts.ejs +5 -0
- package/generators/client/templates/vue/src/main/webapp/app/main.ts.ejs +4 -2
- package/generators/client/templates/vue/src/main/webapp/app/router/admin.ts.ejs +4 -4
- package/generators/client/templates/vue/src/main/webapp/app/shared/alert/alert.service.ts.ejs +61 -0
- package/generators/client/templates/vue/src/test/javascript/spec/app/account/account.service.spec.ts.ejs +2 -2
- package/generators/client/templates/vue/src/test/javascript/spec/app/account/login-form/login-form.component.spec.ts.ejs +1 -1
- package/generators/client/templates/vue/src/test/javascript/spec/app/admin/tracker/tracker.component.spec.ts.ejs +12 -12
- package/generators/client/templates/vue/src/test/javascript/spec/app/admin/tracker/tracker.service.spec.ts.ejs +2 -1
- package/generators/client/templates/vue/src/test/javascript/spec/app/admin/user-management/user-management-edit.component.spec.ts.ejs +3 -1
- package/generators/client/templates/vue/src/test/javascript/spec/app/admin/user-management/user-management-view.component.spec.ts.ejs +2 -1
- package/generators/client/templates/vue/src/test/javascript/spec/app/admin/user-management/user-management.component.spec.ts.ejs +3 -1
- package/generators/client/templates/vue/src/test/javascript/spec/app/shared/alert/alert.service.spec.ts.ejs +124 -0
- package/generators/common/templates/.husky/pre-commit +1 -1
- package/generators/common/templates/package.json +3 -3
- package/generators/docker-compose/templates/realm-config/jhipster-realm.json.ejs +13 -12
- package/generators/entity/index.js +13 -0
- package/generators/entity-client/index.js +53 -0
- package/generators/entity-client/templates/angular/src/main/webapp/app/entities/entity-management.module.ts.ejs +1 -1
- package/generators/entity-client/templates/angular/src/main/webapp/app/entities/route/entity-management-routing-resolve.service.spec.ts.ejs +52 -54
- package/generators/entity-client/templates/angular/src/main/webapp/app/entities/service/entity.service.spec.ts.ejs +173 -175
- package/generators/entity-client/templates/angular/src/main/webapp/app/entities/update/entity-management-update.component.html.ejs +2 -4
- package/generators/entity-client/templates/angular/src/main/webapp/app/entities/update/entity-management-update.component.ts.ejs +7 -0
- package/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-delete-dialog.tsx.ejs +5 -2
- package/generators/entity-client/templates/vue/src/main/webapp/app/entities/entity-details.component.ts.ejs +5 -0
- package/generators/entity-client/templates/vue/src/main/webapp/app/entities/entity-update.component.ts.ejs +14 -2
- package/generators/entity-client/templates/vue/src/main/webapp/app/entities/entity.component.ts.ejs +7 -0
- package/generators/entity-client/templates/vue/src/test/javascript/spec/app/entities/entity-details.component.spec.ts.ejs +2 -1
- package/generators/entity-client/templates/vue/src/test/javascript/spec/app/entities/entity-update.component.spec.ts.ejs +2 -0
- package/generators/entity-client/templates/vue/src/test/javascript/spec/app/entities/entity.component.spec.ts.ejs +3 -1
- package/generators/entity-server/files-couchbase.js +2 -2
- package/generators/entity-server/files.js +31 -30
- package/generators/entity-server/templates/couchbase/src/main/java/package/repository/EntityRepository.java.ejs +2 -2
- package/generators/entity-server/templates/couchbase/src/main/resources/config/couchmove/changelog/entity.fts.ejs +1 -1
- package/generators/entity-server/templates/src/main/java/package/domain/Entity.java.jhi.ejs +2 -2
- package/generators/entity-server/templates/src/main/java/package/domain/enumeration/Enum.java.ejs +1 -1
- package/generators/entity-server/templates/src/main/java/package/repository/EntityRepository.java.ejs +2 -2
- package/generators/entity-server/templates/src/main/java/package/repository/EntityRepositoryInternalImpl_reactive.java.ejs +7 -7
- package/generators/entity-server/templates/src/main/java/package/repository/EntityRepository_reactive.java.ejs +2 -2
- package/generators/entity-server/templates/src/main/java/package/repository/rowmapper/EntityRowMapper.java.ejs +4 -4
- package/generators/entity-server/templates/src/main/java/package/repository/search/EntitySearchRepository.java.ejs +2 -2
- package/generators/entity-server/templates/src/main/java/package/service/EntityQueryService.java.ejs +8 -8
- package/generators/entity-server/templates/src/main/java/package/service/EntityService.java.ejs +4 -4
- package/generators/entity-server/templates/src/main/java/package/service/criteria/EntityCriteria.java.ejs +4 -4
- package/generators/entity-server/templates/src/main/java/package/service/dto/EntityDTO.java.ejs +3 -3
- package/generators/entity-server/templates/src/main/java/package/service/impl/EntityServiceImpl.java.ejs +8 -8
- package/generators/entity-server/templates/src/main/java/package/service/mapper/BaseEntityMapper.java.ejs +1 -1
- package/generators/entity-server/templates/src/main/java/package/service/mapper/EntityMapper.java.ejs +3 -3
- package/generators/entity-server/templates/src/main/java/package/web/rest/EntityResource.java.ejs +12 -12
- package/generators/entity-server/templates/src/test/java/package/domain/EntityTest.java.ejs +1 -1
- package/generators/entity-server/templates/src/test/java/package/repository/search/EntitySearchRepositoryMockConfiguration.java.ejs +1 -1
- package/generators/entity-server/templates/src/test/java/package/service/dto/EntityDTOTest.java.ejs +1 -1
- package/generators/entity-server/templates/src/test/java/package/service/mapper/EntityMapperTest.java.ejs +1 -1
- package/generators/entity-server/templates/src/test/java/package/web/rest/EntityResourceIT.java.ejs +18 -15
- package/generators/generator-base.js +10 -3
- package/generators/generator-constants.js +6 -5
- package/generators/heroku/index.js +13 -15
- package/generators/init/templates/.husky/pre-commit +1 -1
- package/generators/kubernetes-helm/templates/app/Chart.yml.ejs +22 -0
- package/generators/kubernetes-helm/templates/app/requirements.yml.ejs +2 -2
- package/generators/kubernetes-helm/templates/csvc/Chart.yml.ejs +17 -0
- package/generators/kubernetes-helm/templates/csvc/requirements.yml.ejs +3 -3
- package/generators/languages/templates/src/main/webapp/i18n/hr/reset.json.ejs +1 -2
- package/generators/maven/templates/.mvn/wrapper/maven-wrapper.properties +1 -1
- package/generators/server/index.js +38 -13
- package/generators/server/needle-api/needle-server-cache.js +4 -6
- package/generators/server/templates/.mvn/wrapper/maven-wrapper.properties +1 -1
- package/generators/server/templates/build.gradle.ejs +1 -1
- package/generators/server/templates/gradle.properties.ejs +1 -1
- package/generators/server/templates/pom.xml.ejs +4 -3
- package/generators/server/templates/settings.gradle.ejs +9 -0
- package/generators/server/templates/src/main/docker/app.yml.ejs +1 -0
- package/generators/server/templates/src/main/docker/config/realm-config/jhipster-realm.json.ejs +13 -12
- package/generators/server/templates/src/main/java/package/aop/logging/LoggingAspect.java.ejs +1 -1
- package/generators/server/templates/src/main/java/package/config/DatabaseConfiguration_cassandra.java.ejs +0 -6
- package/generators/server/templates/src/main/java/package/config/DatabaseConfiguration_sql.java.ejs +2 -2
- package/generators/server/templates/src/main/java/package/config/JacksonConfiguration.java.ejs +1 -1
- package/generators/server/templates/src/main/java/package/config/LocaleConfiguration.java.ejs +0 -2
- package/generators/server/templates/src/main/java/package/config/SecurityConfiguration.java.ejs +2 -5
- package/generators/server/templates/src/main/java/package/config/SecurityConfiguration_reactive.java.ejs +9 -1
- package/generators/server/templates/src/main/java/package/security/PersistentTokenRememberMeServices.java.ejs +0 -2
- package/generators/server/templates/src/main/resources/config/application-dev.yml.ejs +1 -1
- package/generators/server/templates/src/main/resources/config/application-prod.yml.ejs +1 -1
- package/generators/server/templates/src/main/resources/config/application.yml.ejs +2 -2
- package/package.json +12 -12
- package/utils/field.js +1 -1
package/generators/entity-server/templates/src/main/java/package/service/EntityQueryService.java.ejs
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service;
|
|
20
20
|
|
|
21
21
|
<%_
|
|
22
22
|
const serviceClassName = entityClass + 'QueryService';
|
|
@@ -44,16 +44,16 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
44
44
|
|
|
45
45
|
import tech.jhipster.service.QueryService;
|
|
46
46
|
|
|
47
|
-
import <%=
|
|
48
|
-
import <%=
|
|
49
|
-
import <%=
|
|
47
|
+
import <%= entityAbsolutePackage %>.domain.<%= persistClass %>;
|
|
48
|
+
import <%= entityAbsolutePackage %>.domain.*; // for static metamodels
|
|
49
|
+
import <%= entityAbsolutePackage %>.repository.<%= entityClass %>Repository;
|
|
50
50
|
<%_ if (searchEngineElasticsearch) { _%>
|
|
51
|
-
import <%=
|
|
51
|
+
import <%= entityAbsolutePackage %>.repository.search.<%= entityClass %>SearchRepository;
|
|
52
52
|
<%_ } _%>
|
|
53
|
-
import <%=
|
|
53
|
+
import <%= entityAbsolutePackage %>.service.criteria.<%= entityClass %>Criteria;
|
|
54
54
|
<%_ if (dtoMapstruct) { _%>
|
|
55
|
-
import <%=
|
|
56
|
-
import <%=
|
|
55
|
+
import <%= entityAbsolutePackage %>.service.dto.<%= dtoClass %>;
|
|
56
|
+
import <%= entityAbsolutePackage %>.service.mapper.<%= entityClass %>Mapper;
|
|
57
57
|
<%_ } _%>
|
|
58
58
|
|
|
59
59
|
/**
|
package/generators/entity-server/templates/src/main/java/package/service/EntityService.java.ejs
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service;
|
|
20
20
|
|
|
21
21
|
<%_
|
|
22
22
|
const instanceType = restClass;
|
|
@@ -26,9 +26,9 @@ const listOrFlux = (reactive) ? 'Flux' : 'List';
|
|
|
26
26
|
const pageOrFlux = (reactive) ? 'Flux' : 'Page';
|
|
27
27
|
_%>
|
|
28
28
|
<%_ if (dtoMapstruct) { _%>
|
|
29
|
-
import <%=
|
|
29
|
+
import <%= entityAbsolutePackage %>.service.dto.<%= dtoClass %>;
|
|
30
30
|
<%_ } else { _%>
|
|
31
|
-
import <%=
|
|
31
|
+
import <%= entityAbsolutePackage %>.domain.<%= persistClass %>;
|
|
32
32
|
<%_ } _%>
|
|
33
33
|
<%_ if (!paginationNo || relationshipsContainEagerLoad) { _%>
|
|
34
34
|
|
|
@@ -53,7 +53,7 @@ import java.util.UUID;
|
|
|
53
53
|
<%_ } _%>
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
|
-
* Service Interface for managing {@link <% if (dtoMapstruct) { %><%=
|
|
56
|
+
* Service Interface for managing {@link <% if (dtoMapstruct) { %><%= entityAbsolutePackage %>.domain.<% } %><%= persistClass %>}.
|
|
57
57
|
*/
|
|
58
58
|
public interface <%= entityClass %>Service {
|
|
59
59
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
package <%=
|
|
1
|
+
package <%= entityAbsolutePackage %>.service.criteria;
|
|
2
2
|
|
|
3
3
|
import java.io.Serializable;
|
|
4
4
|
import java.util.Objects;
|
|
5
5
|
import tech.jhipster.service.Criteria;
|
|
6
6
|
<%_ for (const field of fields) { if (field.fieldIsEnum === true) { _%>
|
|
7
|
-
import <%=
|
|
7
|
+
import <%= entityAbsolutePackage %>.domain.enumeration.<%= field.fieldType %>;
|
|
8
8
|
<%_ } } _%>
|
|
9
9
|
import tech.jhipster.service.filter.BooleanFilter;
|
|
10
10
|
import tech.jhipster.service.filter.DoubleFilter;
|
|
@@ -68,8 +68,8 @@ filterVariables.push({ filterType : oauthAwareReferenceFilterType,
|
|
|
68
68
|
});
|
|
69
69
|
_%>
|
|
70
70
|
/**
|
|
71
|
-
* Criteria class for the {@link <%=
|
|
72
|
-
* in {@link <%=
|
|
71
|
+
* Criteria class for the {@link <%= entityAbsolutePackage %>.domain.<%= persistClass %>} entity. This class is used
|
|
72
|
+
* in {@link <%= entityAbsolutePackage %>.web.rest.<%= entityClass %>Resource} to receive all the possible filtering options from
|
|
73
73
|
* the Http GET request parameters.
|
|
74
74
|
* For example the following could be a valid request:
|
|
75
75
|
* {@code /<%= entityApiUrl %>?id.greaterThan=5&attr1.contains=something&attr2.specified=false}
|
package/generators/entity-server/templates/src/main/java/package/service/dto/EntityDTO.java.ejs
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service.dto;
|
|
20
20
|
|
|
21
21
|
import java.util.Objects;
|
|
22
22
|
<%_ if (typeof javadoc !== 'undefined') { _%>
|
|
@@ -57,11 +57,11 @@ import java.util.UUID;
|
|
|
57
57
|
import javax.persistence.Lob;
|
|
58
58
|
<%_ } _%>
|
|
59
59
|
<%_ Object.keys(uniqueEnums).forEach(function(element) { _%>
|
|
60
|
-
import <%=
|
|
60
|
+
import <%= entityAbsolutePackage %>.domain.enumeration.<%= element %>;
|
|
61
61
|
<%_ }); _%>
|
|
62
62
|
|
|
63
63
|
/**
|
|
64
|
-
* A DTO for the {@link <%=
|
|
64
|
+
* A DTO for the {@link <%= entityAbsolutePackage %>.domain.<%= persistClass %>} entity.
|
|
65
65
|
*/
|
|
66
66
|
<%_ if (typeof javadoc !== 'undefined') { _%>
|
|
67
67
|
@ApiModel(description = "<%- formatAsApiDescription(javadoc) %>")
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service<% if (serviceImpl) { %>.impl<% } %>;
|
|
20
20
|
|
|
21
21
|
<%_
|
|
22
22
|
const serviceClassName = serviceImpl ? entityClass + 'ServiceImpl' : entityClass + 'Service';
|
|
@@ -34,19 +34,19 @@ const searchRepository = entityInstance + 'SearchRepository';
|
|
|
34
34
|
|
|
35
35
|
_%>
|
|
36
36
|
<%_ if (serviceImpl) { _%>
|
|
37
|
-
import <%=
|
|
37
|
+
import <%= entityAbsolutePackage %>.service.<%= entityClass %>Service;
|
|
38
38
|
<%_ } _%>
|
|
39
|
-
import <%=
|
|
40
|
-
import <%=
|
|
39
|
+
import <%= entityAbsolutePackage %>.domain.<%= persistClass %>;
|
|
40
|
+
import <%= entityAbsolutePackage %>.repository.<%= entityClass %>Repository;
|
|
41
41
|
<%_ if (isUsingMapsId === true) { _%>
|
|
42
|
-
import <%=
|
|
42
|
+
import <%= entityAbsolutePackage %>.repository.<%= mapsIdAssoc.otherEntityNameCapitalized %>Repository;
|
|
43
43
|
<%_ } _%>
|
|
44
44
|
<%_ if (searchEngineElasticsearch) { _%>
|
|
45
|
-
import <%=
|
|
45
|
+
import <%= entityAbsolutePackage %>.repository.search.<%= entityClass %>SearchRepository;
|
|
46
46
|
<%_ } _%>
|
|
47
47
|
<%_ if (dtoMapstruct) { _%>
|
|
48
|
-
import <%=
|
|
49
|
-
import <%=
|
|
48
|
+
import <%= entityAbsolutePackage %>.service.dto.<%= dtoClass %>;
|
|
49
|
+
import <%= entityAbsolutePackage %>.service.mapper.<%= entityClass %>Mapper;
|
|
50
50
|
<%_ } _%>
|
|
51
51
|
import org.slf4j.Logger;
|
|
52
52
|
import org.slf4j.LoggerFactory;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service.mapper;
|
|
20
20
|
|
|
21
21
|
import org.mapstruct.BeanMapping;
|
|
22
22
|
import org.mapstruct.MappingTarget;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service.mapper;
|
|
20
20
|
|
|
21
21
|
<%_
|
|
22
22
|
let existingMappings = [];
|
|
@@ -38,8 +38,8 @@ _%>
|
|
|
38
38
|
import java.util.Set;
|
|
39
39
|
<%_ } _%>
|
|
40
40
|
|
|
41
|
-
import <%=
|
|
42
|
-
import <%=
|
|
41
|
+
import <%= entityAbsolutePackage %>.domain.*;
|
|
42
|
+
import <%= entityAbsolutePackage %>.service.dto.<%= dtoClass %>;
|
|
43
43
|
|
|
44
44
|
import org.mapstruct.*;
|
|
45
45
|
<%_ if (uuidMapMethod) { _%>
|
package/generators/entity-server/templates/src/main/java/package/web/rest/EntityResource.java.ejs
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.web.rest;
|
|
20
20
|
|
|
21
21
|
<%_
|
|
22
22
|
const viaService = !serviceNo;
|
|
@@ -30,32 +30,32 @@ for (const relationship of relationships) {
|
|
|
30
30
|
}
|
|
31
31
|
_%>
|
|
32
32
|
<%_ if (!dtoMapstruct || serviceNo) { _%>
|
|
33
|
-
import <%=
|
|
33
|
+
import <%= entityAbsolutePackage %>.domain.<%= persistClass %>;
|
|
34
34
|
<%_ } _%>
|
|
35
|
-
import <%=
|
|
35
|
+
import <%= entityAbsolutePackage %>.repository.<%= entityClass %>Repository;
|
|
36
36
|
<%_ if (!serviceNo) { _%>
|
|
37
|
-
import <%=
|
|
37
|
+
import <%= entityAbsolutePackage %>.service.<%= entityClass %>Service;
|
|
38
38
|
<%_ } else { _%>
|
|
39
39
|
<%_ if (isUsingMapsId === true) { _%>
|
|
40
|
-
import <%=
|
|
40
|
+
import <%= entityAbsolutePackage %>.repository.<%= mapsIdAssoc.otherEntityNameCapitalized %>Repository;
|
|
41
41
|
<%_ } _%>
|
|
42
42
|
<%_ if (searchEngineElasticsearch) { _%>
|
|
43
|
-
import <%=
|
|
43
|
+
import <%= entityAbsolutePackage %>.repository.search.<%= entityClass %>SearchRepository;
|
|
44
44
|
<%_ } _%>
|
|
45
45
|
<%_ } _%>
|
|
46
46
|
<%_ if (saveUserSnapshot) { _%>
|
|
47
|
-
import <%=
|
|
47
|
+
import <%= entityAbsolutePackage %>.repository.UserRepository;
|
|
48
48
|
<%_ } _%>
|
|
49
49
|
import <%= packageName %>.web.rest.errors.BadRequestAlertException;
|
|
50
50
|
<%_ if (dtoMapstruct) { _%>
|
|
51
|
-
import <%=
|
|
51
|
+
import <%= entityAbsolutePackage %>.service.dto.<%= dtoClass %>;
|
|
52
52
|
<%_ if (serviceNo) { _%>
|
|
53
|
-
import <%=
|
|
53
|
+
import <%= entityAbsolutePackage %>.service.mapper.<%= entityClass %>Mapper;
|
|
54
54
|
<%_ } _%>
|
|
55
55
|
<%_ } _%>
|
|
56
56
|
<%_ if (jpaMetamodelFiltering) { _%>
|
|
57
|
-
import <%=
|
|
58
|
-
import <%=
|
|
57
|
+
import <%= entityAbsolutePackage %>.service.criteria.<%= entityClass %>Criteria;
|
|
58
|
+
import <%= entityAbsolutePackage %>.service.<%= entityClass %>QueryService;
|
|
59
59
|
<%_ } _%>
|
|
60
60
|
|
|
61
61
|
import tech.jhipster.web.util.HeaderUtil;
|
|
@@ -134,7 +134,7 @@ import static org.elasticsearch.index.query.QueryBuilders.*;
|
|
|
134
134
|
<%_ } _%>
|
|
135
135
|
|
|
136
136
|
/**
|
|
137
|
-
* REST controller for managing {@link <%=
|
|
137
|
+
* REST controller for managing {@link <%= entityAbsolutePackage %>.domain.<%= persistClass %>}.
|
|
138
138
|
*/
|
|
139
139
|
@RestController
|
|
140
140
|
@RequestMapping("/api")
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.domain;
|
|
20
20
|
|
|
21
21
|
import org.junit.jupiter.api.Test;
|
|
22
22
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.repository.search;
|
|
20
20
|
|
|
21
21
|
import org.springframework.boot.test.mock.mockito.MockBean;
|
|
22
22
|
import org.springframework.context.annotation.Configuration;
|
package/generators/entity-server/templates/src/test/java/package/service/dto/EntityDTOTest.java.ejs
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service.dto;
|
|
20
20
|
|
|
21
21
|
import org.junit.jupiter.api.Test;
|
|
22
22
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.service.mapper;
|
|
20
20
|
|
|
21
21
|
import org.junit.jupiter.api.BeforeEach;
|
|
22
22
|
import org.junit.jupiter.api.Test;
|
package/generators/entity-server/templates/src/test/java/package/web/rest/EntityResourceIT.java.ejs
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
See the License for the specific language governing permissions and
|
|
17
17
|
limitations under the License.
|
|
18
18
|
-%>
|
|
19
|
-
package <%=
|
|
19
|
+
package <%= entityAbsolutePackage %>.web.rest;
|
|
20
20
|
|
|
21
21
|
<%_
|
|
22
22
|
|
|
@@ -57,11 +57,14 @@ if (databaseTypeSql && !reactive) {
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
_%>
|
|
60
|
+
<%_ if (entityAbsolutePackage !== packageName) { _%>
|
|
61
|
+
import <%= packageName %>.web.rest.TestUtil;
|
|
62
|
+
<% } %>
|
|
60
63
|
<%_ if (databaseTypeCassandra) { _%>
|
|
61
64
|
import <%= packageName %>.AbstractCassandraTest;
|
|
62
65
|
<%_ } _%>
|
|
63
66
|
import <%= packageName %>.IntegrationTest;
|
|
64
|
-
import <%=
|
|
67
|
+
import <%= entityAbsolutePackage %>.domain.<%= persistClass %>;
|
|
65
68
|
<%_
|
|
66
69
|
var imported = [];
|
|
67
70
|
for (relationship of relationships) { // import entities in required relationships
|
|
@@ -70,34 +73,34 @@ for (relationship of relationships) { // import entities in required relationshi
|
|
|
70
73
|
const isUsingMapsIdL1 = relationship.id;
|
|
71
74
|
if (imported.indexOf(otherEntityNameCapitalized) === -1) {
|
|
72
75
|
if ((relationshipValidate !== null && relationshipValidate === true) || jpaMetamodelFiltering || (isUsingMapsIdL1 === true)) { _%>
|
|
73
|
-
import <%=
|
|
76
|
+
import <%= entityAbsolutePackage %>.domain.<%= asEntity(otherEntityNameCapitalized) %>;
|
|
74
77
|
<%_
|
|
75
78
|
imported.push(otherEntityNameCapitalized);
|
|
76
79
|
}
|
|
77
80
|
}
|
|
78
81
|
} _%>
|
|
79
82
|
<%_ if (saveUserSnapshot) { _%>
|
|
80
|
-
import <%=
|
|
83
|
+
import <%= entityAbsolutePackage %>.repository.UserRepository;
|
|
81
84
|
<%_ } _%>
|
|
82
|
-
import <%=
|
|
85
|
+
import <%= entityAbsolutePackage %>.repository.<%= entityClass %>Repository;
|
|
83
86
|
<%_ if (databaseTypeSql && reactive) { _%>
|
|
84
|
-
import <%=
|
|
87
|
+
import <%= entityAbsolutePackage %>.service.EntityManager;
|
|
85
88
|
<%_ } _%>
|
|
86
89
|
<%_ if (isUsingMapsId && (!dtoMapstruct && serviceNo)) { _%>
|
|
87
|
-
import <%=
|
|
90
|
+
import <%= entityAbsolutePackage %>.repository.<%= mapsIdAssoc.otherEntityNameCapitalized %>Repository;
|
|
88
91
|
<%_ } _%>
|
|
89
92
|
<%_ if (searchEngineElasticsearch) { _%>
|
|
90
|
-
import <%=
|
|
93
|
+
import <%= entityAbsolutePackage %>.repository.search.<%= entityClass %>SearchRepository;
|
|
91
94
|
<%_ } _%>
|
|
92
95
|
<%_ if (!serviceNo && fieldsContainOwnerManyToMany) { _%>
|
|
93
|
-
import <%=
|
|
96
|
+
import <%= entityAbsolutePackage %>.service.<%= entityClass %>Service;
|
|
94
97
|
<%_ } _%>
|
|
95
98
|
<%_ if (dtoMapstruct) { _%>
|
|
96
|
-
import <%=
|
|
97
|
-
import <%=
|
|
99
|
+
import <%= entityAbsolutePackage %>.service.dto.<%= dtoClass %>;
|
|
100
|
+
import <%= entityAbsolutePackage %>.service.mapper.<%= entityClass %>Mapper;
|
|
98
101
|
<%_ } _%>
|
|
99
102
|
<%_ if (jpaMetamodelFiltering) { _%>
|
|
100
|
-
import <%=
|
|
103
|
+
import <%= entityAbsolutePackage %>.service.criteria.<%= entityClass %>Criteria;
|
|
101
104
|
<%_ } _%>
|
|
102
105
|
|
|
103
106
|
<%_ if (databaseTypeSql && reactive) { _%>
|
|
@@ -216,7 +219,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
|
|
|
216
219
|
|
|
217
220
|
<%_ for (const field of fields.filter(field => !field.transient)) {
|
|
218
221
|
if (field.fieldIsEnum) { _%>
|
|
219
|
-
import <%=
|
|
222
|
+
import <%= entityAbsolutePackage %>.domain.enumeration.<%= field.fieldType %>;
|
|
220
223
|
<%_ }
|
|
221
224
|
} _%>
|
|
222
225
|
/**
|
|
@@ -447,9 +450,9 @@ if (field.fieldTypeString || field.blobContentTypeText) {
|
|
|
447
450
|
<%_ } if (searchEngineElasticsearch) { _%>
|
|
448
451
|
|
|
449
452
|
/**
|
|
450
|
-
* This repository is mocked in the <%=
|
|
453
|
+
* This repository is mocked in the <%= entityAbsolutePackage %>.repository.search test package.
|
|
451
454
|
*
|
|
452
|
-
* @see <%=
|
|
455
|
+
* @see <%= entityAbsolutePackage %>.repository.search.<%= entityClass %>SearchRepositoryMockConfiguration
|
|
453
456
|
*/
|
|
454
457
|
@Autowired
|
|
455
458
|
private <%= entityClass %>SearchRepository mock<%= entityClass %>SearchRepository;
|
|
@@ -2738,6 +2738,11 @@ templates: ${JSON.stringify(existingTemplates, null, 2)}`;
|
|
|
2738
2738
|
dest.microfrontend = config.microfrontend;
|
|
2739
2739
|
dest.gatewayServerPort = config.gatewayServerPort;
|
|
2740
2740
|
|
|
2741
|
+
dest.capitalizedBaseName = config.capitalizedBaseName;
|
|
2742
|
+
dest.dasherizedBaseName = config.dasherizedBaseName;
|
|
2743
|
+
dest.humanizedBaseName = config.humanizedBaseName;
|
|
2744
|
+
dest.projectDescription = config.projectDescription;
|
|
2745
|
+
|
|
2741
2746
|
dest.testFrameworks = config.testFrameworks || [];
|
|
2742
2747
|
dest.cypressCoverage = config.cypressCoverage;
|
|
2743
2748
|
|
|
@@ -2762,10 +2767,12 @@ templates: ${JSON.stringify(existingTemplates, null, 2)}`;
|
|
|
2762
2767
|
if (dest.baseName) {
|
|
2763
2768
|
dest.camelizedBaseName = _.camelCase(dest.baseName);
|
|
2764
2769
|
dest.hipster = this.getHipster(dest.baseName);
|
|
2765
|
-
dest.capitalizedBaseName = _.upperFirst(dest.baseName);
|
|
2766
|
-
dest.dasherizedBaseName = _.kebabCase(dest.baseName);
|
|
2770
|
+
dest.capitalizedBaseName = dest.capitalizedBaseName || _.upperFirst(dest.baseName);
|
|
2771
|
+
dest.dasherizedBaseName = dest.dasherizedBaseName || _.kebabCase(dest.baseName);
|
|
2767
2772
|
dest.lowercaseBaseName = dest.baseName.toLowerCase();
|
|
2768
|
-
dest.humanizedBaseName =
|
|
2773
|
+
dest.humanizedBaseName =
|
|
2774
|
+
dest.humanizedBaseName || (dest.baseName.toLowerCase() === 'jhipster' ? 'JHipster' : _.startCase(dest.baseName));
|
|
2775
|
+
dest.projectDescription = dest.projectDescription || `Description for ${this.baseName}`;
|
|
2769
2776
|
}
|
|
2770
2777
|
}
|
|
2771
2778
|
|
|
@@ -33,10 +33,10 @@ const GRADLE_VERSION = '7.0.2';
|
|
|
33
33
|
const JIB_VERSION = '3.1.4';
|
|
34
34
|
|
|
35
35
|
// Libraries version
|
|
36
|
-
const JHIPSTER_DEPENDENCIES_VERSION = '7.
|
|
36
|
+
const JHIPSTER_DEPENDENCIES_VERSION = '7.3.0';
|
|
37
37
|
// The spring-boot version should match the one managed by https://mvnrepository.com/artifact/tech.jhipster/jhipster-dependencies/JHIPSTER_DEPENDENCIES_VERSION
|
|
38
|
-
const SPRING_BOOT_VERSION = '2.5.
|
|
39
|
-
const LIQUIBASE_VERSION = '4.
|
|
38
|
+
const SPRING_BOOT_VERSION = '2.5.5';
|
|
39
|
+
const LIQUIBASE_VERSION = '4.5.0';
|
|
40
40
|
const LIQUIBASE_DTD_VERSION = LIQUIBASE_VERSION.split('.', 3).slice(0, 2).join('.');
|
|
41
41
|
const HIBERNATE_VERSION = '5.4.32.Final';
|
|
42
42
|
|
|
@@ -46,7 +46,8 @@ const JACKSON_DATABIND_NULLABLE_VERSION = '0.2.1';
|
|
|
46
46
|
|
|
47
47
|
// Version of docker images
|
|
48
48
|
const DOCKER_COMPOSE_FORMAT_VERSION = '3.8';
|
|
49
|
-
const DOCKER_JHIPSTER_REGISTRY = 'jhipster/jhipster-registry:
|
|
49
|
+
// const DOCKER_JHIPSTER_REGISTRY = 'ghcr.io/jhipster/jhipster-registry:main';
|
|
50
|
+
const DOCKER_JHIPSTER_REGISTRY = 'jhipster/jhipster-registry:v7.1.0';
|
|
50
51
|
const DOCKER_JHIPSTER_CONTROL_CENTER = 'jhipster/jhipster-control-center:v0.5.0';
|
|
51
52
|
const DOCKER_JAVA_JRE = 'eclipse-temurin:11-jre-focal';
|
|
52
53
|
const DOCKER_MYSQL = 'mysql:8.0.26';
|
|
@@ -60,7 +61,7 @@ const DOCKER_NEO4J = 'neo4j:4.2.11';
|
|
|
60
61
|
const DOCKER_HAZELCAST_MANAGEMENT_CENTER = 'hazelcast/management-center:4.2021.06';
|
|
61
62
|
const DOCKER_MEMCACHED = 'memcached:1.6.10-alpine';
|
|
62
63
|
const DOCKER_REDIS = 'redis:6.2.5';
|
|
63
|
-
const DOCKER_KEYCLOAK = 'jboss/keycloak:
|
|
64
|
+
const DOCKER_KEYCLOAK = 'jboss/keycloak:15.0.2'; // The version should match the attribute 'keycloakVersion' from /docker-compose/templates/realm-config/jhipster-realm.json.ejs and /server/templates/src/main/docker/config/realm-config/jhipster-realm.json.ejs
|
|
64
65
|
const DOCKER_ELASTICSEARCH = 'docker.elastic.co/elasticsearch/elasticsearch:7.13.3'; // The version should be coherent with the one from spring-data-elasticsearch project
|
|
65
66
|
const DOCKER_KAFKA = `confluentinc/cp-kafka:${KAFKA_VERSION}`;
|
|
66
67
|
const DOCKER_ZOOKEEPER = `confluentinc/cp-zookeeper:${KAFKA_VERSION}`;
|
|
@@ -244,6 +244,7 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
244
244
|
default: 1,
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
|
+
when: answers => answers.useOkta,
|
|
247
248
|
type: 'input',
|
|
248
249
|
name: 'oktaAdminLogin',
|
|
249
250
|
message: 'Login (valid email) for the JHipster Admin user:',
|
|
@@ -254,20 +255,14 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
254
255
|
return true;
|
|
255
256
|
},
|
|
256
257
|
},
|
|
257
|
-
{
|
|
258
|
-
type: 'confirm',
|
|
259
|
-
name: 'oktaAdminPassword',
|
|
260
|
-
message: `${chalk.blue('Take note of this password!')} You will need it on your first login: ${chalk.blue(
|
|
261
|
-
this.randomPassword
|
|
262
|
-
)}`,
|
|
263
|
-
default: true,
|
|
264
|
-
},
|
|
265
258
|
];
|
|
266
259
|
|
|
267
260
|
return this.prompt(prompts).then(props => {
|
|
268
261
|
this.useOkta = props.useOkta;
|
|
269
|
-
this.
|
|
270
|
-
|
|
262
|
+
if (this.useOkta) {
|
|
263
|
+
this.oktaAdminLogin = props.oktaAdminLogin;
|
|
264
|
+
this.oktaAdminPassword = this.randomPassword;
|
|
265
|
+
}
|
|
271
266
|
});
|
|
272
267
|
},
|
|
273
268
|
};
|
|
@@ -300,7 +295,6 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
300
295
|
herokuJavaVersion: this.herokuJavaVersion,
|
|
301
296
|
useOkta: this.useOkta,
|
|
302
297
|
oktaAdminLogin: this.oktaAdminLogin,
|
|
303
|
-
oktaAdminPassword: this.oktaAdminPassword,
|
|
304
298
|
});
|
|
305
299
|
},
|
|
306
300
|
};
|
|
@@ -391,7 +385,7 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
391
385
|
const regionParams = this.herokuRegion !== 'us' ? ` --region ${this.herokuRegion}` : '';
|
|
392
386
|
|
|
393
387
|
this.log(chalk.bold('\nCreating Heroku application and setting up node environment'));
|
|
394
|
-
const child = ChildProcess.exec(`heroku create ${this.herokuAppName}${regionParams}`, (err, stdout, stderr) => {
|
|
388
|
+
const child = ChildProcess.exec(`heroku create ${this.herokuAppName}${regionParams}`, { timeout: 6000 }, (err, stdout, stderr) => {
|
|
395
389
|
if (err) {
|
|
396
390
|
if (stderr.includes('is already taken')) {
|
|
397
391
|
const prompts = [
|
|
@@ -458,7 +452,11 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
458
452
|
});
|
|
459
453
|
} else {
|
|
460
454
|
this.abort = true;
|
|
461
|
-
|
|
455
|
+
if (stderr.includes('Invalid credentials')) {
|
|
456
|
+
this.log.error("Error: Not authenticated. Run 'heroku login' to login to your heroku account and try again.");
|
|
457
|
+
} else {
|
|
458
|
+
this.log.error(err);
|
|
459
|
+
}
|
|
462
460
|
done();
|
|
463
461
|
}
|
|
464
462
|
} else {
|
|
@@ -779,7 +777,7 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
779
777
|
this.log(chalk.yellow('After you have installed jq execute ./provision-okta-addon.sh manually.'));
|
|
780
778
|
}
|
|
781
779
|
if (curlAvailable && jqAvailable) {
|
|
782
|
-
this.log(chalk.green('Running ./provision-okta-addon.sh to create all required roles and users
|
|
780
|
+
this.log(chalk.green('Running ./provision-okta-addon.sh to create all required roles and users for JHipster.'));
|
|
783
781
|
try {
|
|
784
782
|
await execCmd('./provision-okta-addon.sh');
|
|
785
783
|
this.log(chalk.bold('\nOkta configured successfully!'));
|
|
@@ -850,7 +848,7 @@ module.exports = class extends BaseBlueprintGenerator {
|
|
|
850
848
|
this.log(chalk.yellow('After you have installed jq execute ./provision-okta-addon.sh manually.'));
|
|
851
849
|
}
|
|
852
850
|
if (curlAvailable && jqAvailable) {
|
|
853
|
-
this.log(chalk.green('Running ./provision-okta-addon.sh to create all required roles and users
|
|
851
|
+
this.log(chalk.green('Running ./provision-okta-addon.sh to create all required roles and users for JHipster.'));
|
|
854
852
|
try {
|
|
855
853
|
await execCmd('./provision-okta-addon.sh');
|
|
856
854
|
this.log(chalk.bold('\nOkta configured successfully!'));
|
|
@@ -15,3 +15,25 @@ sources:
|
|
|
15
15
|
maintainers:
|
|
16
16
|
- name: Team JHipster
|
|
17
17
|
email:
|
|
18
|
+
dependencies:
|
|
19
|
+
<%_ if (app.prodDatabaseTypeMysql) { _%>
|
|
20
|
+
- name: mysql
|
|
21
|
+
version: <%= HELM_MYSQL %>
|
|
22
|
+
repository: https://charts.helm.sh/stable
|
|
23
|
+
condition: mysql.enabled
|
|
24
|
+
<%_ } else if (app.prodDatabaseTypePostgres) { _%>
|
|
25
|
+
- name: postgresql
|
|
26
|
+
version: <%= HELM_POSTGRESQL %>
|
|
27
|
+
repository: https://charts.bitnami.com/bitnami
|
|
28
|
+
condition: postgresql.enabled
|
|
29
|
+
<%_ } else if (app.prodDatabaseTypeMariadb) { _%>
|
|
30
|
+
- name: mariadb
|
|
31
|
+
version: <%= HELM_MARIADB %>
|
|
32
|
+
repository: https://charts.bitnami.com/bitnami
|
|
33
|
+
condition: mariadb.enabled
|
|
34
|
+
<%_ } else if (app.prodDatabaseTypeMongodb) { _%>
|
|
35
|
+
- name: mongodb-replicaset
|
|
36
|
+
version: <%= HELM_MOGODB_REPLICASET %>
|
|
37
|
+
repository: https://charts.helm.sh/stable
|
|
38
|
+
condition: mongodb.enabled
|
|
39
|
+
<%_ } _%>
|
|
@@ -7,12 +7,12 @@ dependencies:
|
|
|
7
7
|
<%_ } else if (app.prodDatabaseTypePostgres) { _%>
|
|
8
8
|
- name: postgresql
|
|
9
9
|
version: <%= HELM_POSTGRESQL %>
|
|
10
|
-
repository: https://charts.
|
|
10
|
+
repository: https://charts.bitnami.com/bitnami
|
|
11
11
|
condition: postgresql.enabled
|
|
12
12
|
<%_ } else if (app.prodDatabaseTypeMariadb) { _%>
|
|
13
13
|
- name: mariadb
|
|
14
14
|
version: <%= HELM_MARIADB %>
|
|
15
|
-
repository: https://charts.
|
|
15
|
+
repository: https://charts.bitnami.com/bitnami
|
|
16
16
|
condition: mariadb.enabled
|
|
17
17
|
<%_ } else if (app.prodDatabaseTypeMongodb) { _%>
|
|
18
18
|
- name: mongodb-replicaset
|
|
@@ -15,3 +15,20 @@ sources:
|
|
|
15
15
|
maintainers:
|
|
16
16
|
- name: Team JHipster
|
|
17
17
|
email:
|
|
18
|
+
dependencies:
|
|
19
|
+
<%_ if (useKafka) { _%>
|
|
20
|
+
- name: kafka
|
|
21
|
+
version: <%= HELM_KAFKA %>
|
|
22
|
+
repository: https://charts.helm.sh/incubator
|
|
23
|
+
condition: kafka.enabled
|
|
24
|
+
<%_ } _%>
|
|
25
|
+
<%_ if (monitoringPrometheus) { _%>
|
|
26
|
+
- name: prometheus-community
|
|
27
|
+
version: <%= HELM_PROMETHEUS %>
|
|
28
|
+
repository: https://prometheus-community.github.io/helm-charts
|
|
29
|
+
condition: prometheus.enabled
|
|
30
|
+
- name: grafana
|
|
31
|
+
version: <%= HELM_GRAFANA %>
|
|
32
|
+
repository: https://grafana.github.io/helm-charts
|
|
33
|
+
condition: prometheus.enabled
|
|
34
|
+
<%_ } _%>
|
|
@@ -6,12 +6,12 @@ dependencies:
|
|
|
6
6
|
condition: kafka.enabled
|
|
7
7
|
<%_ } _%>
|
|
8
8
|
<%_ if (monitoringPrometheus) { _%>
|
|
9
|
-
- name: prometheus
|
|
9
|
+
- name: prometheus-community
|
|
10
10
|
version: <%= HELM_PROMETHEUS %>
|
|
11
|
-
repository: https://
|
|
11
|
+
repository: https://prometheus-community.github.io/helm-charts
|
|
12
12
|
condition: prometheus.enabled
|
|
13
13
|
- name: grafana
|
|
14
14
|
version: <%= HELM_GRAFANA %>
|
|
15
|
-
repository: https://
|
|
15
|
+
repository: https://grafana.github.io/helm-charts
|
|
16
16
|
condition: prometheus.enabled
|
|
17
17
|
<%_ } _%>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"messages": {
|
|
27
27
|
"info": "Unesite adresu e-pošte koju ste koristili kod registracije",
|
|
28
|
-
"success": "Provjerite svoju e-poštu radi detalja o tome kako resetirati zaporku."
|
|
28
|
+
"success": "Provjerite svoju e-poštu radi detalja o tome kako resetirati zaporku."
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"finish": {
|
|
@@ -41,5 +41,4 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
|
-
|
|
45
44
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.
|
|
1
|
+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.3/apache-maven-3.8.3-bin.zip
|
|
2
2
|
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
|