프레임워크 버전 변경
This commit is contained in:
@@ -4,7 +4,7 @@ buildscript {
|
|||||||
set('springCloudVersion', "Hoxton.SR3")
|
set('springCloudVersion', "Hoxton.SR3")
|
||||||
|
|
||||||
// log4j2 버전 변경
|
// log4j2 버전 변경
|
||||||
set('log4j2.version', '2.15.0')
|
set('log4j2.version', '2.17.1')
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@@ -28,7 +28,7 @@ configurations.all {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (details.requested.group == 'org.apache.logging.log4j') {
|
if (details.requested.group == 'org.apache.logging.log4j') {
|
||||||
details.useVersion '2.15.0'
|
details.useVersion '2.17.1'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -56,7 +56,7 @@ subprojects {
|
|||||||
|
|
||||||
ext {
|
ext {
|
||||||
set('springCloudVersion', "Hoxton.SR3")
|
set('springCloudVersion', "Hoxton.SR3")
|
||||||
ustraVersion = '2.0.50.RELEASE'
|
ustraVersion = '2.0.51.145-SNAPSHOT'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -91,8 +91,8 @@ subprojects {
|
|||||||
implementation 'ch.qos.logback:logback-core:1.2.9'
|
implementation 'ch.qos.logback:logback-core:1.2.9'
|
||||||
implementation 'ch.qos.logback:logback-classic:1.2.9'
|
implementation 'ch.qos.logback:logback-classic:1.2.9'
|
||||||
|
|
||||||
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.15.0'
|
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.17.1'
|
||||||
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
|
implementation 'org.apache.logging.log4j:log4j-api:2.17.1'
|
||||||
|
|
||||||
implementation 'org.springframework.boot:spring-boot-starter'
|
implementation 'org.springframework.boot:spring-boot-starter'
|
||||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Ref } from 'vue-property-decorator'
|
import { Component, Ref } from 'vue-property-decorator'
|
||||||
import { UstraBoComponent } from '@ustra/nuxt-mng-bo/src/components/ustra-bo-component'
|
import { UstraBoComponent } from '@ustra/nuxt-mng-bo/src/components/ustra-bo-component'
|
||||||
import Dext5Editor from '@ustra/nuxt/src/vue/components/dext5/dext5-editor.vue'
|
import Dext5Editor from '@ustra/nuxt/src/vue/components/dext5/dext5-editor'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: { Dext5Editor },
|
components: { Dext5Editor },
|
||||||
|
|||||||
@@ -34,6 +34,8 @@ export default class extends CustomFoComponent {
|
|||||||
// #endregion
|
// #endregion
|
||||||
// #region methods
|
// #region methods
|
||||||
changeText2() {
|
changeText2() {
|
||||||
|
this.$ustra.store.sample().
|
||||||
|
|
||||||
this.$emit('text2_required_change', 'text2 변경 값')
|
this.$emit('text2_required_change', 'text2 변경 값')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
7
front/fo/types/index.d.ts
vendored
7
front/fo/types/index.d.ts
vendored
@@ -1,4 +1,11 @@
|
|||||||
import { CorePlugin } from '../client/plugins/core'
|
import { CorePlugin } from '../client/plugins/core'
|
||||||
|
import { SampleModule } from '../client/store/modules/sample'
|
||||||
|
|
||||||
|
declare module '@ustra/nuxt/src/vue/store/index' {
|
||||||
|
interface StoreModules {
|
||||||
|
sample?: () => SampleModule
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
declare module '@nuxt/types' {
|
declare module '@nuxt/types' {
|
||||||
// context 객체
|
// context 객체
|
||||||
|
|||||||
@@ -10,13 +10,6 @@
|
|||||||
"node": "^12.16.3",
|
"node": "^12.16.3",
|
||||||
"yarn": "^1.22.4"
|
"yarn": "^1.22.4"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
|
||||||
"@babel/preset-env": "7.13.12",
|
|
||||||
"highlight.js": "10.6.0",
|
|
||||||
"markdown-it-highlightjs": "3.1.0",
|
|
||||||
"postcss-loader": "3.0.0",
|
|
||||||
"sass": "1.32.12"
|
|
||||||
},
|
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 2 version",
|
"last 2 version",
|
||||||
"android >= 4.4",
|
"android >= 4.4",
|
||||||
@@ -30,23 +23,24 @@
|
|||||||
"create-off-pack": "rm -rf node_modules && rm yarn.lock && rm -rf npm_packages/* && yarn cache clean && yarn install"
|
"create-off-pack": "rm -rf node_modules && rm yarn.lock && rm -rf npm_packages/* && yarn cache clean && yarn install"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ustra/core": "2.0.44-snapshot.18",
|
"@ustra/core": "2.0.44-snapshot.42",
|
||||||
"@ustra/data": "2.0.44-snapshot.18",
|
"@ustra/data": "2.0.44-snapshot.42",
|
||||||
"@ustra/nuxt": "2.0.44-snapshot.18",
|
"@ustra/nuxt": "2.0.44-snapshot.42",
|
||||||
"@ustra/nuxt-dx": "2.0.44-snapshot.18",
|
"@ustra/nuxt-dx": "2.0.44-snapshot.42",
|
||||||
"@ustra/nuxt-mng": "2.0.44-snapshot.18",
|
"@ustra/nuxt-mng": "2.0.44-snapshot.42",
|
||||||
"@ustra/nuxt-mng-bo": "2.0.44-snapshot.18",
|
"@ustra/nuxt-mng-bo": "2.0.44-snapshot.42",
|
||||||
"@ustra/nuxt-dx-mng-bo": "2.0.44-snapshot.18",
|
"@ustra/nuxt-dx-mng-bo": "2.0.44-snapshot.42",
|
||||||
"@ustra/nuxt-buefy": "2.0.44-snapshot.18"
|
"@ustra/nuxt-buefy": "2.0.44-snapshot.42"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@babel/eslint-parser": "7.16.3",
|
||||||
"@babel/node": "7.13.13",
|
"@babel/node": "7.13.13",
|
||||||
"@babel/preset-env": "7.13.12",
|
"@babel/preset-env": "7.13.12",
|
||||||
"@babel/runtime-corejs3": "7.13.10",
|
"@babel/runtime-corejs3": "7.13.10",
|
||||||
"@nuxt/types": "2.15.7",
|
"@nuxt/types": "2.15.8",
|
||||||
"@nuxt/typescript-build": "2.1.0",
|
"@nuxt/typescript-build": "2.1.0",
|
||||||
"@nuxtjs/eslint-config": "3.1.0",
|
"@nuxtjs/eslint-config": "3.1.0",
|
||||||
"@nuxtjs/eslint-config-typescript": "6.0.1",
|
"@nuxtjs/eslint-config-typescript": "8.0.0",
|
||||||
"@nuxtjs/eslint-module": "3.0.2",
|
"@nuxtjs/eslint-module": "3.0.2",
|
||||||
"@types/cli-progress": "3.9.1",
|
"@types/cli-progress": "3.9.1",
|
||||||
"@types/crypto-js": "4.0.1",
|
"@types/crypto-js": "4.0.1",
|
||||||
@@ -59,27 +53,26 @@
|
|||||||
"@vue/test-utils": "1.1.4",
|
"@vue/test-utils": "1.1.4",
|
||||||
"@vuese/cli": "2.14.3",
|
"@vuese/cli": "2.14.3",
|
||||||
"babel-core": "7.0.0-bridge.0",
|
"babel-core": "7.0.0-bridge.0",
|
||||||
"babel-eslint": "10.1.0",
|
"babel-jest": "27.4.4",
|
||||||
"babel-jest": "26.6.3",
|
|
||||||
"core-js": "3",
|
"core-js": "3",
|
||||||
"cpx": "1.5.0",
|
"cpx": "1.5.0",
|
||||||
"cross-env": "5.2.0",
|
"cross-env": "5.2.0",
|
||||||
"cross-spawn": "7.0.3",
|
"cross-spawn": "7.0.3",
|
||||||
"eslint": "7.24.0",
|
"eslint": "8.4.1",
|
||||||
"eslint-config-prettier": "6.15.0",
|
"eslint-config-prettier": "8.3.0",
|
||||||
"eslint-plugin-nuxt": "1.0.0",
|
"eslint-plugin-nuxt": "3.1.0",
|
||||||
"eslint-plugin-prettier": "3.4.0",
|
"eslint-plugin-prettier": "3.4.0",
|
||||||
"jest": "26.6.3",
|
"eslint-plugin-vue": "8.2.0",
|
||||||
|
"jest": "27.4.4",
|
||||||
"markdown-loader": "6.0.0",
|
"markdown-loader": "6.0.0",
|
||||||
"prettier": "2.2.1",
|
"prettier": "2.5.1",
|
||||||
"sass": "1.32.12",
|
"sass": "1.32.12",
|
||||||
"sass-loader": "10.1.1",
|
"sass-loader": "10.1.1",
|
||||||
"shelljs": "0.8.4",
|
"shelljs": "0.8.4",
|
||||||
"ts-jest": "26.2.0",
|
"ts-jest": "27.1.1",
|
||||||
"ts-loader": "6.2.2",
|
"ts-loader": "6.2.2",
|
||||||
"ts-node": "8.10.2",
|
"ts-node": "8.10.2",
|
||||||
"vue-jest": "3.0.7",
|
"vue-jest": "3.0.4",
|
||||||
"vue-loader": "15.9.7",
|
"webpack": "4.46.0"
|
||||||
"webpack": "4.42.1"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
"@/*": ["./fo/client/*", "./bo/client/*"],
|
"@/*": ["./fo/client/*", "./bo/client/*"],
|
||||||
"@ustra-sample/*": ["./*"]
|
"@ustra-sample/*": ["./*"]
|
||||||
},
|
},
|
||||||
"types": ["@types/node", "@types/jest", "@nuxt/types", "@ustra/nuxt", "@ustra/nuxt-dx", "@ustra/nuxt-mng-bo", "@ustra-sample/cmm", "@ustra/buefy", "buefy", "@ustra-sample/bo", "@ustra-sample/fo"]
|
"types": ["@types/node", "@types/jest", "@nuxt/types", "@ustra/nuxt", "@ustra/nuxt-dx", "@ustra/nuxt-mng-bo", "@ustra-sample/cmm", "@ustra/buefy", "buefy", "@ustra-sample/bo", "./fo/types"]
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", ".nuxt", "dist", "src/**/*.test.ts", "**/src/static/**/*", "**/*.js"],
|
"exclude": ["node_modules", ".nuxt", "dist", "src/**/*.test.ts", "**/src/static/**/*", "**/*.js"],
|
||||||
"typedocOptions": {
|
"typedocOptions": {
|
||||||
|
|||||||
3461
front/yarn.lock
3461
front/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user