-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/demo/src/test/java/com/example/demo/DemoApplicationTests.java b/src/test/java/com/example/demo/DemoApplicationTests.java
similarity index 100%
rename from demo/src/test/java/com/example/demo/DemoApplicationTests.java
rename to src/test/java/com/example/demo/DemoApplicationTests.java
diff --git a/target/classes/application.properties b/target/classes/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/target/classes/application.properties
@@ -0,0 +1 @@
+
diff --git a/target/classes/bootstrap.properties b/target/classes/bootstrap.properties
new file mode 100644
index 0000000..3c6866e
--- /dev/null
+++ b/target/classes/bootstrap.properties
@@ -0,0 +1 @@
+#spring.cloud.azure.appconfiguration.stores[0].connection-string= ${APP_CONFIGURATION_CONNECTION_STRING}
diff --git a/target/classes/favicon.ico b/target/classes/favicon.ico
new file mode 100644
index 0000000..92264f3
Binary files /dev/null and b/target/classes/favicon.ico differ
diff --git a/demo/src/main/resources/package/HelloController.java b/target/classes/package/HelloController.java
similarity index 96%
rename from demo/src/main/resources/package/HelloController.java
rename to target/classes/package/HelloController.java
index f956f97..f6dd8a0 100644
--- a/demo/src/main/resources/package/HelloController.java
+++ b/target/classes/package/HelloController.java
@@ -1,26 +1,26 @@
-package com.example.demo;
-
-import org.springframework.boot.context.properties.ConfigurationProperties;
-import org.springframework.stereotype.Controller;
-import org.springframework.ui.Model;
-
-import com.microsoft.azure.spring.cloud.feature.manager.FeatureManager;
-import org.springframework.web.bind.annotation.GetMapping;
-
-
-@Controller
-@ConfigurationProperties("controller")
-public class HelloController {
-
- private FeatureManager featureManager;
-
- public HelloController(FeatureManager featureManager) {
- this.featureManager = featureManager;
- }
-
- @GetMapping("/welcome")
- public String mainWithParam(Model model) {
- model.addAttribute("Beta", featureManager.isEnabledAsync("featureManagement.Beta").block());
- return "welcome";
- }
+package com.example.demo;
+
+import org.springframework.boot.context.properties.ConfigurationProperties;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+
+import com.microsoft.azure.spring.cloud.feature.manager.FeatureManager;
+import org.springframework.web.bind.annotation.GetMapping;
+
+
+@Controller
+@ConfigurationProperties("controller")
+public class HelloController {
+
+ private FeatureManager featureManager;
+
+ public HelloController(FeatureManager featureManager) {
+ this.featureManager = featureManager;
+ }
+
+ @GetMapping("/welcome")
+ public String mainWithParam(Model model) {
+ model.addAttribute("Beta", featureManager.isEnabledAsync("featureManagement.Beta").block());
+ return "welcome";
+ }
}
\ No newline at end of file
diff --git a/target/classes/package/MessageProperties.java b/target/classes/package/MessageProperties.java
new file mode 100644
index 0000000..ddfc09a
--- /dev/null
+++ b/target/classes/package/MessageProperties.java
@@ -0,0 +1,18 @@
+package com.example.demo;
+
+import org.springframework.boot.context.properties.ConfigurationProperties;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@ConfigurationProperties(prefix = "config")
+public class MessageProperties {
+ private String message;
+
+ public String getMessage() {
+ return message;
+ }
+
+ public void setMessage(String message) {
+ this.message = message;
+ }
+}
\ No newline at end of file
diff --git a/target/classes/static/CSS/main.css b/target/classes/static/CSS/main.css
new file mode 100644
index 0000000..ea8b295
--- /dev/null
+++ b/target/classes/static/CSS/main.css
@@ -0,0 +1,28 @@
+html {
+ position: relative;
+ min-height: 100%;
+}
+body {
+ margin-bottom: 60px;
+}
+.footer {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ height: 60px;
+ line-height: 60px;
+ background-color: #f5f5f5;
+}
+
+body > .container {
+ padding: 60px 15px 0;
+}
+
+.footer > .container {
+ padding-right: 15px;
+ padding-left: 15px;
+}
+
+code {
+ font-size: 80%;
+}
\ No newline at end of file
diff --git a/target/classes/static/images/bit.png b/target/classes/static/images/bit.png
new file mode 100644
index 0000000..df92cb5
Binary files /dev/null and b/target/classes/static/images/bit.png differ
diff --git a/target/classes/templates/welcome.html b/target/classes/templates/welcome.html
new file mode 100644
index 0000000..e1e77c4
--- /dev/null
+++ b/target/classes/templates/welcome.html
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
new file mode 100644
index 0000000..00f09d9
--- /dev/null
+++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
@@ -0,0 +1,3 @@
+com\example\demo\DemoApplication.class
+com\example\demo\HelloController.class
+com\example\demo\MessageProperties.class
diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
new file mode 100644
index 0000000..b3f0640
--- /dev/null
+++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
@@ -0,0 +1,3 @@
+C:\Users\hambe\Desktop\fafnirAdventure-main\DevOpsforJavaShops\src\main\java\com\example\demo\HelloController.java
+C:\Users\hambe\Desktop\fafnirAdventure-main\DevOpsforJavaShops\src\main\java\com\example\demo\DemoApplication.java
+C:\Users\hambe\Desktop\fafnirAdventure-main\DevOpsforJavaShops\src\main\java\com\example\demo\MessageProperties.java
diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
new file mode 100644
index 0000000..e4dca50
--- /dev/null
+++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
@@ -0,0 +1 @@
+com\example\demo\DemoApplicationTests.class
diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
new file mode 100644
index 0000000..9424a10
--- /dev/null
+++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
@@ -0,0 +1 @@
+C:\Users\hambe\Desktop\fafnirAdventure-main\DevOpsforJavaShops\src\test\java\com\example\demo\DemoApplicationTests.java
diff --git a/target/surefire-reports/TEST-com.example.demo.DemoApplicationTests.xml b/target/surefire-reports/TEST-com.example.demo.DemoApplicationTests.xml
new file mode 100644
index 0000000..a2afcc3
--- /dev/null
+++ b/target/surefire-reports/TEST-com.example.demo.DemoApplicationTests.xml
@@ -0,0 +1,490 @@
+
+