Skip to content

Commit c667b7e

Browse files
committed
chore: update pox.xml and add .gitignore
1 parent 7ea8128 commit c667b7e

File tree

7 files changed

+372
-14
lines changed

7 files changed

+372
-14
lines changed

unicorn_contracts/.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
### Linux ###
2+
**/*~
3+
**/.fuse_hidden*
4+
**/.directory
5+
**/.Trash-*
6+
**/.nfs*
7+
8+
### OSX ###
9+
**/*.DS_Store
10+
**/.AppleDouble
11+
**/.LSOverride
12+
**/.DocumentRevisions-V100
13+
**/.fseventsd
14+
**/.Spotlight-V100
15+
**/.TemporaryItems
16+
**/.Trashes
17+
**/.VolumeIcon.icns
18+
**/.com.apple.timemachine.donotpresent
19+
20+
### JetBrains IDEs ###
21+
**/*.iws
22+
**/.idea/
23+
**/.idea_modules/
24+
25+
### Python ###
26+
**/__pycache__/
27+
**/*.py[cod]
28+
**/*$py.class
29+
**/.Python
30+
**/build/
31+
**/develop-eggs/
32+
**/dist/
33+
**/downloads/
34+
**/eggs/
35+
**/.eggs/
36+
**/parts/
37+
**/sdist/
38+
**/wheels/
39+
**/*.egg
40+
**/*.egg-info/
41+
**/.installed.cfg
42+
**/pip-log.txt
43+
**/pip-delete-this-directory.txt
44+
45+
### Unit test / coverage reports ###
46+
**/.cache
47+
**/.coverage
48+
**/.hypothesis/
49+
**/.pytest_cache/
50+
**/.tox/
51+
**/*.cover
52+
**/coverage.xml
53+
**/htmlcov/
54+
**/nosetests.xml
55+
56+
### pyenv ###
57+
**/.python-version
58+
59+
### Environments ###
60+
**/.env
61+
**/.venv
62+
**/env/
63+
**/venv/
64+
**/ENV/
65+
**/env.bak/
66+
**/venv.bak/
67+
68+
### VisualStudioCode ###
69+
**/.vscode/
70+
**/.history
71+
72+
### Windows ###
73+
# Windows thumbnail cache files
74+
**/Thumbs.db
75+
**/ehthumbs.db
76+
**/ehthumbs_vista.db
77+
**/Desktop.ini
78+
**/$RECYCLE.BIN/
79+
**/*.lnk
80+
81+
### requirements.txt ###
82+
# We ignore Python's requirements.txt as we use Poetry instead
83+
**/requirements.txt
84+
**/.aws-sam

unicorn_contracts/ContractsFunction/pom.xml

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<junit.version>4.13.2</junit.version>
1717
<aws-lambda-java-tests.version>1.1.1</aws-lambda-java-tests.version>
1818
</properties>
19-
2019
<dependencies>
2120
<dependency>
2221
<groupId>software.amazon.lambda</groupId>
@@ -28,12 +27,47 @@
2827
<artifactId>powertools-logging</artifactId>
2928
<version>${aws.java.powertool.version}</version>
3029
</dependency>
31-
<!-- https://mvnrepository.com/artifact/software.amazon.lambda/powertools-metrics -->
3230
<dependency>
3331
<groupId>software.amazon.lambda</groupId>
3432
<artifactId>powertools-metrics</artifactId>
3533
<version>${aws.java.powertool.version}</version>
3634
</dependency>
35+
36+
<!-- AWS Lambda Core -->
37+
<dependency>
38+
<groupId>com.amazonaws</groupId>
39+
<artifactId>aws-lambda-java-core</artifactId>
40+
<version>1.2.2</version>
41+
</dependency>
42+
43+
<!-- Jackson for JSON processing -->
44+
<dependency>
45+
<groupId>com.fasterxml.jackson.core</groupId>
46+
<artifactId>jackson-databind</artifactId>
47+
<version>2.15.2</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.fasterxml.jackson.core</groupId>
51+
<artifactId>jackson-core</artifactId>
52+
<version>2.15.2</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.fasterxml.jackson.core</groupId>
56+
<artifactId>jackson-annotations</artifactId>
57+
<version>2.15.2</version>
58+
</dependency>
59+
60+
<!-- Log4j -->
61+
<dependency>
62+
<groupId>org.apache.logging.log4j</groupId>
63+
<artifactId>log4j-api</artifactId>
64+
<version>2.20.0</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.apache.logging.log4j</groupId>
68+
<artifactId>log4j-core</artifactId>
69+
<version>2.20.0</version>
70+
</dependency>
3771

3872

3973
<dependency>
@@ -53,9 +87,6 @@
5387
<version>${aws.java.sdk.version}</version>
5488
</dependency>
5589

56-
57-
58-
5990
<!-- https://mvnrepository.com/artifact/software.amazon.awssdk/dynamodb -->
6091
<dependency>
6192
<groupId>software.amazon.awssdk</groupId>
@@ -85,13 +116,10 @@
85116
<version>${aws-lambda-java-tests.version}</version>
86117
<scope>test</scope>
87118
</dependency>
88-
89-
90119
</dependencies>
91120

92121
<build>
93122
<plugins>
94-
95123
<plugin>
96124
<groupId>org.apache.maven.plugins</groupId>
97125
<artifactId>maven-surefire-plugin</artifactId>

unicorn_contracts/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Resources:
202202
RedrivePolicy:
203203
deadLetterTargetArn: !GetAtt UnicornContractsIngestDLQ.Arn
204204
maxReceiveCount: 1
205-
VisibilityTimeout: 20
205+
VisibilityTimeout: 40
206206
Tags:
207207
- Key: stage
208208
Value: !Ref Stage

unicorn_properties/.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
### Linux ###
2+
**/*~
3+
**/.fuse_hidden*
4+
**/.directory
5+
**/.Trash-*
6+
**/.nfs*
7+
8+
### OSX ###
9+
**/*.DS_Store
10+
**/.AppleDouble
11+
**/.LSOverride
12+
**/.DocumentRevisions-V100
13+
**/.fseventsd
14+
**/.Spotlight-V100
15+
**/.TemporaryItems
16+
**/.Trashes
17+
**/.VolumeIcon.icns
18+
**/.com.apple.timemachine.donotpresent
19+
20+
### JetBrains IDEs ###
21+
**/*.iws
22+
**/.idea/
23+
**/.idea_modules/
24+
25+
### Python ###
26+
**/__pycache__/
27+
**/*.py[cod]
28+
**/*$py.class
29+
**/.Python
30+
**/build/
31+
**/develop-eggs/
32+
**/dist/
33+
**/downloads/
34+
**/eggs/
35+
**/.eggs/
36+
**/parts/
37+
**/sdist/
38+
**/wheels/
39+
**/*.egg
40+
**/*.egg-info/
41+
**/.installed.cfg
42+
**/pip-log.txt
43+
**/pip-delete-this-directory.txt
44+
45+
### Unit test / coverage reports ###
46+
**/.cache
47+
**/.coverage
48+
**/.hypothesis/
49+
**/.pytest_cache/
50+
**/.tox/
51+
**/*.cover
52+
**/coverage.xml
53+
**/htmlcov/
54+
**/nosetests.xml
55+
56+
### pyenv ###
57+
**/.python-version
58+
59+
### Environments ###
60+
**/.env
61+
**/.venv
62+
**/env/
63+
**/venv/
64+
**/ENV/
65+
**/env.bak/
66+
**/venv.bak/
67+
68+
### VisualStudioCode ###
69+
**/.vscode/
70+
**/.history
71+
72+
### Windows ###
73+
# Windows thumbnail cache files
74+
**/Thumbs.db
75+
**/ehthumbs.db
76+
**/ehthumbs_vista.db
77+
**/Desktop.ini
78+
**/$RECYCLE.BIN/
79+
**/*.lnk
80+
81+
### requirements.txt ###
82+
# We ignore Python's requirements.txt as we use Poetry instead
83+
**/requirements.txt
84+
**/.aws-sam

unicorn_properties/PropertyFunctions/pom.xml

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,41 @@
8484
<version>${netty-nio-client.version}</version>
8585
</dependency>
8686

87-
87+
<!-- AWS Lambda Core -->
88+
<dependency>
89+
<groupId>com.amazonaws</groupId>
90+
<artifactId>aws-lambda-java-core</artifactId>
91+
<version>1.2.2</version>
92+
</dependency>
93+
94+
<!-- Jackson for JSON processing -->
95+
<dependency>
96+
<groupId>com.fasterxml.jackson.core</groupId>
97+
<artifactId>jackson-databind</artifactId>
98+
<version>2.15.2</version>
99+
</dependency>
100+
<dependency>
101+
<groupId>com.fasterxml.jackson.core</groupId>
102+
<artifactId>jackson-core</artifactId>
103+
<version>2.15.2</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>com.fasterxml.jackson.core</groupId>
107+
<artifactId>jackson-annotations</artifactId>
108+
<version>2.15.2</version>
109+
</dependency>
110+
111+
<!-- Log4j -->
112+
<dependency>
113+
<groupId>org.apache.logging.log4j</groupId>
114+
<artifactId>log4j-api</artifactId>
115+
<version>2.20.0</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>org.apache.logging.log4j</groupId>
119+
<artifactId>log4j-core</artifactId>
120+
<version>2.20.0</version>
121+
</dependency>
88122
<dependency>
89123
<groupId>org.mockito</groupId>
90124
<artifactId>mockito-core</artifactId>

unicorn_web/.gitignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
### Linux ###
2+
**/*~
3+
**/.fuse_hidden*
4+
**/.directory
5+
**/.Trash-*
6+
**/.nfs*
7+
8+
### OSX ###
9+
**/*.DS_Store
10+
**/.AppleDouble
11+
**/.LSOverride
12+
**/.DocumentRevisions-V100
13+
**/.fseventsd
14+
**/.Spotlight-V100
15+
**/.TemporaryItems
16+
**/.Trashes
17+
**/.VolumeIcon.icns
18+
**/.com.apple.timemachine.donotpresent
19+
20+
### JetBrains IDEs ###
21+
**/*.iws
22+
**/.idea/
23+
**/.idea_modules/
24+
25+
### Python ###
26+
**/__pycache__/
27+
**/*.py[cod]
28+
**/*$py.class
29+
**/.Python
30+
**/build/
31+
**/develop-eggs/
32+
**/dist/
33+
**/downloads/
34+
**/eggs/
35+
**/.eggs/
36+
**/parts/
37+
**/sdist/
38+
**/wheels/
39+
**/*.egg
40+
**/*.egg-info/
41+
**/.installed.cfg
42+
**/pip-log.txt
43+
**/pip-delete-this-directory.txt
44+
45+
### Unit test / coverage reports ###
46+
**/.cache
47+
**/.coverage
48+
**/.hypothesis/
49+
**/.pytest_cache/
50+
**/.tox/
51+
**/*.cover
52+
**/coverage.xml
53+
**/htmlcov/
54+
**/nosetests.xml
55+
56+
### pyenv ###
57+
**/.python-version
58+
59+
### Environments ###
60+
**/.env
61+
**/.venv
62+
**/env/
63+
**/venv/
64+
**/ENV/
65+
**/env.bak/
66+
**/venv.bak/
67+
68+
### VisualStudioCode ###
69+
**/.vscode/
70+
**/.history
71+
72+
### Windows ###
73+
# Windows thumbnail cache files
74+
**/Thumbs.db
75+
**/ehthumbs.db
76+
**/ehthumbs_vista.db
77+
**/Desktop.ini
78+
**/$RECYCLE.BIN/
79+
**/*.lnk
80+
81+
### requirements.txt ###
82+
# We ignore Python's requirements.txt as we use Poetry instead
83+
**/requirements.txt
84+
**/.aws-sam

0 commit comments

Comments
 (0)