Skip to content

Commit

Permalink
add developer and lattice-tools. and release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocky Yu committed Sep 26, 2022
1 parent 8904ac2 commit f37f229
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lattice-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lattice</artifactId>
<groupId>org.hiforce.lattice</groupId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lattice-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion lattice-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lattice</artifactId>
<groupId>org.hiforce.lattice</groupId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lattice-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lattice</artifactId>
<groupId>org.hiforce.lattice</groupId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion lattice-tools/lattice-load-config-res/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lattice</artifactId>
<groupId>org.hiforce.lattice</groupId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.google.auto.service.AutoService;
import com.google.common.collect.Lists;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.hifforce.lattice.model.config.BusinessConfig;
import org.hifforce.lattice.spi.config.BusinessConfigLoadSpi;
Expand All @@ -16,6 +17,7 @@
* @author Rocky Yu
* @since 2022/9/26
*/
@Slf4j
@SuppressWarnings("unused")
@AutoService(BusinessConfigLoadSpi.class)
public class BizConfigResourceLoader implements BusinessConfigLoadSpi {
Expand Down Expand Up @@ -46,8 +48,10 @@ public List<BusinessConfig> loadBusinessConfigs(List<String> bizCodes) {
if (StringUtils.isEmpty(jsonStr)) {
continue;
}
log.warn("Lattice business [{}] local config file: {} found!", bizCode, resourceFile);
BusinessConfig businessConfig = JacksonUtils.deserializeIgnoreException(jsonStr, BusinessConfig.class);
configs.add(businessConfig);
log.warn("Lattice business [{}] local config loaded!", bizCode);
} finally {
try {
if (null != is) {
Expand Down
2 changes: 1 addition & 1 deletion lattice-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lattice</artifactId>
<groupId>org.hiforce.lattice</groupId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<url>https://github.com/hiforce/lattice</url>
<inceptionYear>2022</inceptionYear>

<version>1.0.5-SNAPSHOT</version>
<version>1.0.5</version>
<properties>
<version.lattice>1.0.5-SNAPSHOT</version.lattice>
<version.lattice>1.0.5</version.lattice>
<version.spring.boot>2.7.3</version.spring.boot>
<springext-plugin-version>1.2</springext-plugin-version>
<version.jdk>1.8</version.jdk>
Expand Down

0 comments on commit f37f229

Please sign in to comment.