Skip to content

Commit 93f3a98

Browse files
committed
Merge remote-tracking branch 'up/main' into jimmy/jakarta-ee
2 parents be52473 + b520a0d commit 93f3a98

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2342
-453
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Java Migration Copilot Samples
22

3-
Some sample projects that can be fed to the Java migration tool to replatform them to Azure.
3+
## Samples:
44

5+
- [mi-sql-public-demo](https://github.com/Azure-Samples/java-migration-copilot-samples/tree/main/mi-sql-public-demo) : Getting started sample that migrates an app to use Managed Identities instead of password.
6+
7+
- [rabbitmq-sender](https://github.com/Azure-Samples/java-migration-copilot-samples/tree/main/rabbitmq-sender) : Getting started sample application that sends messages to a RabbitMQ message broker. Demonstrate creating and applying your own custom migration formulas.
8+
9+
- [asset manager](https://github.com/Azure-Samples/java-migration-copilot-samples/tree/main/asset-manager) : This is a complete workshop with an end-to-end scenario that migrates an app to Azure using predefined and custom formulas. After the migration, the app will run on Azure Container Apps and interact with Auzure Blob, Azure Service Bus and Azure Database for PostgreSQL.
10+
11+
-[Todo Web API with Oracle Database](https://github.com/Azure-Samples/java-migration-copilot-samples/tree/main/todo-web-api-use-oracle-db) A To-do application using Oracle database for storage. It leverages Oracle-specific SQL features and data types, for instance, VARCHAR2. This sample migrates the application to use Azure Database for PostgreSQL instead.
12+
513
## Branches
614

715
* `main`: source projects

asset-manager/.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
replay_pid*
25+
26+
HELP.md
27+
target/
28+
!.mvn/wrapper/maven-wrapper.jar
29+
!**/src/main/**/target/
30+
!**/src/test/**/target/
31+
32+
### STS ###
33+
.apt_generated
34+
.classpath
35+
.factorypath
36+
.project
37+
.settings
38+
.springBeans
39+
.sts4-cache
40+
41+
### IntelliJ IDEA ###
42+
.idea
43+
*.iws
44+
*.iml
45+
*.ipr
46+
47+
### NetBeans ###
48+
/nbproject/private/
49+
/nbbuild/
50+
/dist/
51+
/nbdist/
52+
/.nb-gradle/
53+
build/
54+
!**/src/main/**/build/
55+
!**/src/test/**/build/
56+
57+
### VS Code ###
58+
.vscode/
59+
60+
/logs/
61+
.migrate-copilot/

asset-manager/README.md

Lines changed: 159 additions & 72 deletions
Large diffs are not rendered by default.
72.1 KB
Loading
42.4 KB
Loading
32.8 KB
Loading
35.2 KB
Loading
16.2 KB
Loading
47.8 KB
Loading
59.3 KB
Loading

0 commit comments

Comments
 (0)