├── .gitmodules └── CODE_OF_CONDUCT.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "akka"] 2 | path = akka 3 | url = git@github.com:mdedetrich/akka-apache.git 4 | [submodule "akka-persistence-r2dbc-apache"] 5 | path = akka-persistence-r2dbc 6 | url = git@github.com:mdedetrich/akka-persistence-r2dbc-apache.git 7 | [submodule "akka-persistence-jdbc-apache"] 8 | path = akka-persistence-jdbc 9 | url = git@github.com:mdedetrich/akka-persistence-jdbc-apache.git 10 | [submodule "akka-samples-cc0"] 11 | path = akka-samples 12 | url = git@github.com:mdedetrich/akka-samples-cc0.git 13 | [submodule "akka-platform-guide-apache"] 14 | path = akka-platform-guide 15 | url = git@github.com:mdedetrich/akka-platform-guide-apache.git 16 | [submodule "akka-persistence-dynamodb"] 17 | path = akka-persistence-dynamodb 18 | url = git@github.com:mdedetrich/akka-persistence-dynamodb-apache.git 19 | [submodule "akka-management"] 20 | path = akka-management 21 | url = git@github.com:mdedetrich/akka-management-apache.git 22 | [submodule "akka-persistence-cassandra"] 23 | path = akka-persistence-cassandra 24 | url = git@github.com:mdedetrich/akka-persistence-cassandra-apache.git 25 | [submodule "akka-projection"] 26 | path = akka-projection 27 | url = git@github.com:mdedetrich/akka-projection-apache.git 28 | [submodule "akka-grpc"] 29 | path = akka-grpc 30 | url = git@github.com:mdedetrich/akka-grpc-apache.git 31 | [submodule "alpakka-kafka"] 32 | path = alpakka-kafka 33 | url = git@github.com:mdedetrich/alpakka-kafka-apache.git 34 | [submodule "alpakka"] 35 | path = alpakka 36 | url = git@github.com:mdedetrich/alpakka-apache.git 37 | [submodule "akka-http"] 38 | path = akka-http 39 | url = git@github.com:mdedetrich/akka-http-apache.git 40 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This is a project of the [Apache Software Foundation](https://apache.org) 4 | and follows the ASF [Code of Conduct](https://www.apache.org/foundation/policies/conduct). 5 | 6 | If you observe behavior that violates those rules please contact Claude Warren at claude@apache.org and Matthew de Detrich at mdedetrich@gmail.com. 7 | --------------------------------------------------------------------------------