-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use Mix.Config | ||
import Config | ||
|
||
config :ca, | ||
ldap_port: 1389, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
defmodule CA.Mixfile do | ||
use Mix.Project | ||
|
||
def application(), do: [ mod: {CA, []}, applications: [:x509]] | ||
def project() do | ||
[ | ||
app: :ca, | ||
version: "4.8.2", | ||
elixir: "~> 1.7", | ||
version: "5.10.1", | ||
description: "CA CXC 138 21 Certificate Authority", | ||
package: package(), | ||
deps: deps() | ||
] | ||
end | ||
|
||
def package do | ||
[ | ||
files: ~w(config src include priv lib mix.exs LICENSE README.md), | ||
licenses: ["ISC"], | ||
maintainers: ["Namdak Tonpa"], | ||
name: :ca, | ||
links: %{"GitHub" => "https://github.com/synrc/ca"} | ||
] | ||
end | ||
|
||
def application(), do: [ mod: {CA, []}, applications: [:x509,:ex_doc]] | ||
|
||
def deps() do | ||
[ | ||
{:x509, "~> 0.8.7"}, | ||
{:ex_doc, ">= 0.0.0", only: :dev} | ||
package: [ | ||
name: :ca, | ||
files: ~w(config src include priv lib mix.exs LICENSE README.md), | ||
licenses: ["ISC"], | ||
maintainers: ["Namdak Tonpa"], | ||
links: %{"GitHub" => "https://github.com/synrc/ca"} | ||
], | ||
deps: [ | ||
{:ex_doc, ">= 0.0.0", only: :dev}, | ||
{:x509, "~> 0.8.7"} | ||
] | ||
] | ||
end | ||
end |